Subversion Repositories HelenOS-historic

Rev

Rev 206 | Rev 211 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
178 palkovsky 1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
29
#include <arch/pm.h>
30
#include <arch/mm/page.h>
31
#include <arch/types.h>
206 palkovsky 32
#include <arch/interrupt.h>
33
#include <arch/asm.h>
178 palkovsky 34
 
206 palkovsky 35
#include <config.h>
178 palkovsky 36
 
206 palkovsky 37
#include <memstr.h>
38
#include <mm/heap.h>
39
#include <debug.h>
40
 
178 palkovsky 41
/*
42
 * There is no segmentation in long mode so we set up flat mode. In this
43
 * mode, we use, for each privilege level, two segments spanning the
44
 * whole memory. One is for code and one is for data.
45
 */
46
 
47
struct descriptor gdt[GDT_ITEMS] = {
48
    /* NULL descriptor */
49
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
50
    /* KTEXT descriptor */
51
    { .limit_0_15  = 0xffff,
52
      .base_0_15   = 0,
53
      .base_16_23  = 0,
188 palkovsky 54
      .access      = AR_PRESENT | AR_CODE | DPL_KERNEL | AR_READABLE ,
178 palkovsky 55
      .limit_16_19 = 0xf,
56
      .available   = 0,
57
      .longmode    = 1,
188 palkovsky 58
      .special     = 0,
178 palkovsky 59
      .granularity = 1,
60
      .base_24_31  = 0 },
61
    /* KDATA descriptor */
62
    { .limit_0_15  = 0xffff,
63
      .base_0_15   = 0,
64
      .base_16_23  = 0,
65
      .access      = AR_PRESENT | AR_DATA | AR_WRITABLE | DPL_KERNEL,
66
      .limit_16_19 = 0xf,
67
      .available   = 0,
68
      .longmode    = 0,
69
      .special     = 0,
188 palkovsky 70
      .granularity = 1,
178 palkovsky 71
      .base_24_31  = 0 },
72
    /* UTEXT descriptor */
73
    { .limit_0_15  = 0xffff,
74
      .base_0_15   = 0,
75
      .base_16_23  = 0,
76
      .access      = AR_PRESENT | AR_CODE | DPL_USER,
77
      .limit_16_19 = 0xf,
78
      .available   = 0,
79
      .longmode    = 1,
80
      .special     = 0,
206 palkovsky 81
      .granularity = 1,
178 palkovsky 82
      .base_24_31  = 0 },
83
    /* UDATA descriptor */
84
    { .limit_0_15  = 0xffff,
85
      .base_0_15   = 0,
86
      .base_16_23  = 0,
87
      .access      = AR_PRESENT | AR_DATA | AR_WRITABLE | DPL_USER,
88
      .limit_16_19 = 0xf,
89
      .available   = 0,
90
      .longmode    = 0,
91
      .special     = 1,
92
      .granularity = 1,
93
      .base_24_31  = 0 },
188 palkovsky 94
    /* KTEXT 16-bit protected */
95
    { .limit_0_15  = 0xffff,
96
      .base_0_15   = 0,
97
      .base_16_23  = 0,
98
      .access      = AR_PRESENT | AR_CODE | DPL_KERNEL | AR_READABLE,
99
      .limit_16_19 = 0xf,
100
      .available   = 0,
101
      .longmode    = 0,
102
      .special     = 0,
103
      .granularity = 1,
104
      .base_24_31  = 0 },
206 palkovsky 105
    /* TSS descriptor - set up will be completed later,
106
     * on AMD64 it is 64-bit - 2 items in table */
107
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
178 palkovsky 108
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
109
};
110
 
208 palkovsky 111
struct ptr_16_64 gdtr = {.limit = sizeof(gdtr), .base= (__u64)KA2PA(&gdt) };
206 palkovsky 112
 
178 palkovsky 113
struct idescriptor idt[IDT_ITEMS];
114
 
115
static struct tss tss;
208 palkovsky 116
struct tss *tss_p = NULL;
178 palkovsky 117
 
206 palkovsky 118
/* TODO: Does not compile correctly if it does not exist ???? */
188 palkovsky 119
int __attribute__ ((section ("K_DATA_START"))) __fake;
206 palkovsky 120
 
121
void gdt_tss_setbase(struct descriptor *d, __address base)
122
{
123
    struct tss_descriptor *td = (struct tss_descriptor *) d;
124
 
125
    td->base_0_15 = base & 0xffff;
126
    td->base_16_23 = ((base) >> 16) & 0xff;
127
    td->base_24_31 = ((base) >> 24) & 0xff;
128
    td->base_32_63 = ((base) >> 32);
129
}
130
 
131
void gdt_tss_setlimit(struct descriptor *d, __u32 limit)
132
{
133
    struct tss_descriptor *td = (struct tss_descriptor *) d;
134
 
135
    td->limit_0_15 = limit & 0xffff;
136
    td->limit_16_19 = (limit >> 16) & 0xf;
137
}
138
 
139
void idt_setoffset(struct idescriptor *d, __address offset)
140
{
141
    /*
142
     * Offset is a linear address.
143
     */
144
    d->offset_0_15 = offset & 0xffff;
145
    d->offset_16_31 = offset >> 16 & 0xffff;
146
    d->offset_32_63 = offset >> 32;
147
}
148
 
149
void tss_initialize(struct tss *t)
150
{
151
    memsetb((__address) t, sizeof(struct tss), 0);
152
}
153
 
154
/*
155
 * This function takes care of proper setup of IDT and IDTR.
156
 */
157
void idt_init(void)
158
{
159
    struct idescriptor *d;
160
    int i;
161
 
162
    for (i = 0; i < IDT_ITEMS; i++) {
163
        d = &idt[i];
164
 
165
        d->unused = 0;
166
        d->selector = idtselector(KTEXT_DES);
167
 
168
        d->present = 1;
169
        d->type = AR_INTERRUPT; /* masking interrupt */
170
 
171
        if (i == VECTOR_SYSCALL) {
172
            /*
173
             * The syscall interrupt gate must be calleable from userland.
174
             */
175
            d->dpl |= PL_USER;
176
        }
177
 
178
        idt_setoffset(d, ((__address) interrupt_handlers) + i*interrupt_handler_size);
179
        trap_register(i, null_interrupt);
180
    }
181
    trap_register(13, gp_fault);
182
    trap_register( 7, nm_fault);
183
    trap_register(12, ss_fault);
184
}
185
 
186
 
187
/* Clean IOPL(12,13) and NT(14) flags in EFLAGS register */
188
static void clean_IOPL_NT_flags(void)
189
{
190
    asm
191
    (
192
        "pushfq;"
193
        "pop %%rax;"
194
        "and $~(0x7000),%%rax;"
195
        "pushq %%rax;"
196
        "popfq;"
197
        :
198
        :
199
        :"%rax"
200
    );
201
}
202
 
203
/* Clean AM(18) flag in CR0 register */
204
static void clean_AM_flag(void)
205
{
206
    asm
207
    (
208
        "mov %%cr0,%%rax;"
209
        "and $~(0x40000),%%rax;"
210
        "mov %%rax,%%cr0;"
211
        :
212
        :
213
        :"%rax"
214
    );
215
}
216
 
217
void pm_init(void)
218
{
219
    struct descriptor *gdt_p = (struct descriptor *) PA2KA(gdtr.base);
208 palkovsky 220
    struct tss_descriptor *tss_desc;
206 palkovsky 221
 
222
    /*
223
     * Each CPU has its private GDT and TSS.
224
     * All CPUs share one IDT.
225
     */
226
 
227
    if (config.cpu_active == 1) {
228
        idt_init();
229
        /*
230
         * NOTE: bootstrap CPU has statically allocated TSS, because
231
         * the heap hasn't been initialized so far.
232
         */
233
        tss_p = &tss;
234
    }
235
    else {
236
        tss_p = (struct tss *) malloc(sizeof(struct tss));
237
        if (!tss_p)
238
            panic("could not allocate TSS\n");
239
    }
240
 
241
    tss_initialize(tss_p);
242
 
208 palkovsky 243
    tss_desc = (struct tss_descriptor *) (&gdt_p[TSS_DES]);
244
    tss_desc->present = 1;
245
    tss_desc->type = AR_TSS;
246
    tss_desc->dpl = PL_KERNEL;
206 palkovsky 247
 
248
    gdt_tss_setbase(&gdt_p[TSS_DES], (__address) tss_p);
249
    gdt_tss_setlimit(&gdt_p[TSS_DES], sizeof(struct tss) - 1);
250
 
251
    /*
252
     * As of this moment, the current CPU has its own GDT pointing
253
     * to its own TSS. We just need to load the TR register.
254
     */
255
    __asm__("ltr %0" : : "r" ((__u16) gdtselector(TSS_DES)));
256
 
257
    clean_IOPL_NT_flags();    /* Disable I/O on nonprivileged levels */
258
    clean_AM_flag();          /* Disable alignment check */
259
}