Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
178 palkovsky 1
/*
2071 jermar 2
 * Copyright (c) 2001-2004 Jakub Jermar
3
 * Copyright (c) 2005-2006 Ondrej Palkovsky
178 palkovsky 4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 *
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
29
 
1888 jermar 30
/** @addtogroup amd64  
1702 cejka 31
 * @{
32
 */
33
/** @file
34
 */
35
 
178 palkovsky 36
#include <arch/pm.h>
206 palkovsky 37
#include <arch/asm.h>
1252 palkovsky 38
#include <mm/as.h>
2089 decky 39
#include <mm/frame.h>
206 palkovsky 40
#include <memstr.h>
814 palkovsky 41
#include <mm/slab.h>
206 palkovsky 42
 
178 palkovsky 43
/*
44
 * There is no segmentation in long mode so we set up flat mode. In this
45
 * mode, we use, for each privilege level, two segments spanning the
46
 * whole memory. One is for code and one is for data.
47
 */
48
 
1187 jermar 49
descriptor_t gdt[GDT_ITEMS] = {
178 palkovsky 50
    /* NULL descriptor */
51
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
52
    /* KTEXT descriptor */
53
    { .limit_0_15  = 0xffff,
54
      .base_0_15   = 0,
55
      .base_16_23  = 0,
188 palkovsky 56
      .access      = AR_PRESENT | AR_CODE | DPL_KERNEL | AR_READABLE ,
178 palkovsky 57
      .limit_16_19 = 0xf,
58
      .available   = 0,
59
      .longmode    = 1,
188 palkovsky 60
      .special     = 0,
178 palkovsky 61
      .granularity = 1,
62
      .base_24_31  = 0 },
63
    /* KDATA descriptor */
64
    { .limit_0_15  = 0xffff,
65
      .base_0_15   = 0,
66
      .base_16_23  = 0,
67
      .access      = AR_PRESENT | AR_DATA | AR_WRITABLE | DPL_KERNEL,
68
      .limit_16_19 = 0xf,
69
      .available   = 0,
70
      .longmode    = 0,
71
      .special     = 0,
188 palkovsky 72
      .granularity = 1,
178 palkovsky 73
      .base_24_31  = 0 },
803 palkovsky 74
    /* UDATA descriptor */
178 palkovsky 75
    { .limit_0_15  = 0xffff,
76
      .base_0_15   = 0,
77
      .base_16_23  = 0,
803 palkovsky 78
      .access      = AR_PRESENT | AR_DATA | AR_WRITABLE | DPL_USER,
178 palkovsky 79
      .limit_16_19 = 0xf,
80
      .available   = 0,
803 palkovsky 81
      .longmode    = 0,
82
      .special     = 1,
206 palkovsky 83
      .granularity = 1,
178 palkovsky 84
      .base_24_31  = 0 },
803 palkovsky 85
    /* UTEXT descriptor */
178 palkovsky 86
    { .limit_0_15  = 0xffff,
87
      .base_0_15   = 0,
88
      .base_16_23  = 0,
803 palkovsky 89
      .access      = AR_PRESENT | AR_CODE | DPL_USER,
178 palkovsky 90
      .limit_16_19 = 0xf,
91
      .available   = 0,
803 palkovsky 92
      .longmode    = 1,
93
      .special     = 0,
178 palkovsky 94
      .granularity = 1,
95
      .base_24_31  = 0 },
332 palkovsky 96
    /* KTEXT 32-bit protected, for protected mode before long mode */
188 palkovsky 97
    { .limit_0_15  = 0xffff,
98
      .base_0_15   = 0,
99
      .base_16_23  = 0,
100
      .access      = AR_PRESENT | AR_CODE | DPL_KERNEL | AR_READABLE,
101
      .limit_16_19 = 0xf,
102
      .available   = 0,
103
      .longmode    = 0,
277 palkovsky 104
      .special     = 1,
188 palkovsky 105
      .granularity = 1,
106
      .base_24_31  = 0 },
206 palkovsky 107
    /* TSS descriptor - set up will be completed later,
108
     * on AMD64 it is 64-bit - 2 items in table */
109
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
1289 vana 110
    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
111
    /* VESA Init descriptor */
1292 vana 112
#ifdef CONFIG_FB    
1289 vana 113
    { 0xffff, 0, VESA_INIT_SEGMENT>>12, AR_PRESENT | AR_CODE | DPL_KERNEL, 0xf, 0, 0, 0, 0, 0 }
1292 vana 114
#endif
178 palkovsky 115
};
116
 
1187 jermar 117
idescriptor_t idt[IDT_ITEMS];
178 palkovsky 118
 
1780 jermar 119
ptr_16_64_t gdtr = {.limit = sizeof(gdt), .base= (uint64_t) gdt };
120
ptr_16_64_t idtr = {.limit = sizeof(idt), .base= (uint64_t) idt };
229 palkovsky 121
 
1187 jermar 122
static tss_t tss;
123
tss_t *tss_p = NULL;
178 palkovsky 124
 
1780 jermar 125
void gdt_tss_setbase(descriptor_t *d, uintptr_t base)
206 palkovsky 126
{
1187 jermar 127
    tss_descriptor_t *td = (tss_descriptor_t *) d;
206 palkovsky 128
 
129
    td->base_0_15 = base & 0xffff;
130
    td->base_16_23 = ((base) >> 16) & 0xff;
131
    td->base_24_31 = ((base) >> 24) & 0xff;
132
    td->base_32_63 = ((base) >> 32);
133
}
134
 
1780 jermar 135
void gdt_tss_setlimit(descriptor_t *d, uint32_t limit)
206 palkovsky 136
{
1187 jermar 137
    struct tss_descriptor *td = (tss_descriptor_t *) d;
206 palkovsky 138
 
139
    td->limit_0_15 = limit & 0xffff;
140
    td->limit_16_19 = (limit >> 16) & 0xf;
141
}
142
 
1780 jermar 143
void idt_setoffset(idescriptor_t *d, uintptr_t offset)
206 palkovsky 144
{
145
    /*
146
     * Offset is a linear address.
147
     */
148
    d->offset_0_15 = offset & 0xffff;
149
    d->offset_16_31 = offset >> 16 & 0xffff;
150
    d->offset_32_63 = offset >> 32;
151
}
152
 
1187 jermar 153
void tss_initialize(tss_t *t)
206 palkovsky 154
{
1780 jermar 155
    memsetb((uintptr_t) t, sizeof(tss_t), 0);
206 palkovsky 156
}
157
 
158
/*
159
 * This function takes care of proper setup of IDT and IDTR.
160
 */
161
void idt_init(void)
162
{
1187 jermar 163
    idescriptor_t *d;
206 palkovsky 164
    int i;
165
 
166
    for (i = 0; i < IDT_ITEMS; i++) {
167
        d = &idt[i];
168
 
169
        d->unused = 0;
211 palkovsky 170
        d->selector = gdtselector(KTEXT_DES);
206 palkovsky 171
 
172
        d->present = 1;
173
        d->type = AR_INTERRUPT; /* masking interrupt */
174
 
1780 jermar 175
        idt_setoffset(d, ((uintptr_t) interrupt_handlers) + i*interrupt_handler_size);
206 palkovsky 176
    }
177
}
178
 
799 palkovsky 179
/** Initialize segmentation - code/data/idt tables
180
 *
181
 */
206 palkovsky 182
void pm_init(void)
183
{
1187 jermar 184
    descriptor_t *gdt_p = (struct descriptor *) gdtr.base;
185
    tss_descriptor_t *tss_desc;
206 palkovsky 186
 
187
    /*
188
     * Each CPU has its private GDT and TSS.
189
     * All CPUs share one IDT.
190
     */
191
 
192
    if (config.cpu_active == 1) {
193
        idt_init();
194
        /*
195
         * NOTE: bootstrap CPU has statically allocated TSS, because
196
         * the heap hasn't been initialized so far.
197
         */
198
        tss_p = &tss;
199
    }
200
    else {
1252 palkovsky 201
        /* We are going to use malloc, which may return
202
         * non boot-mapped pointer, initialize the CR3 register
203
         * ahead of page_init */
1780 jermar 204
        write_cr3((uintptr_t) AS_KERNEL->page_table);
1252 palkovsky 205
 
1187 jermar 206
        tss_p = (struct tss *) malloc(sizeof(tss_t), FRAME_ATOMIC);
206 palkovsky 207
        if (!tss_p)
208
            panic("could not allocate TSS\n");
209
    }
210
 
211
    tss_initialize(tss_p);
212
 
1187 jermar 213
    tss_desc = (tss_descriptor_t *) (&gdt_p[TSS_DES]);
208 palkovsky 214
    tss_desc->present = 1;
215
    tss_desc->type = AR_TSS;
216
    tss_desc->dpl = PL_KERNEL;
206 palkovsky 217
 
1780 jermar 218
    gdt_tss_setbase(&gdt_p[TSS_DES], (uintptr_t) tss_p);
1251 jermar 219
    gdt_tss_setlimit(&gdt_p[TSS_DES], TSS_BASIC_SIZE - 1);
206 palkovsky 220
 
1186 jermar 221
    gdtr_load(&gdtr);
222
    idtr_load(&idtr);
206 palkovsky 223
    /*
224
     * As of this moment, the current CPU has its own GDT pointing
225
     * to its own TSS. We just need to load the TR register.
226
     */
1186 jermar 227
    tr_load(gdtselector(TSS_DES));
206 palkovsky 228
}
1702 cejka 229
 
1888 jermar 230
/** @}
1702 cejka 231
 */