Subversion Repositories HelenOS-historic

Rev

Rev 1292 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1292 Rev 1702
1
/*
1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
2
 * Copyright (C) 2001-2004 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup amd64 
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __amd64_PM_H__
35
#ifndef __amd64_PM_H__
30
#define __amd64_PM_H__
36
#define __amd64_PM_H__
31
 
37
 
32
#ifndef __ASM__
38
#ifndef __ASM__
33
# include <arch/types.h>
39
# include <arch/types.h>
34
# include <typedefs.h>
40
# include <typedefs.h>
35
# include <arch/context.h>
41
# include <arch/context.h>
36
#endif
42
#endif
37
 
43
 
38
#define IDT_ITEMS 64
44
#define IDT_ITEMS 64
39
#define GDT_ITEMS 8
45
#define GDT_ITEMS 8
40
 
46
 
41
 
47
 
42
#define NULL_DES    0
48
#define NULL_DES    0
43
/* Warning: Do not reorder next items, unless you look into syscall.c!!! */
49
/* Warning: Do not reorder next items, unless you look into syscall.c!!! */
44
#define KTEXT_DES   1
50
#define KTEXT_DES   1
45
#define KDATA_DES   2
51
#define KDATA_DES   2
46
#define UDATA_DES   3
52
#define UDATA_DES   3
47
#define UTEXT_DES   4
53
#define UTEXT_DES   4
48
#define KTEXT32_DES     5
54
#define KTEXT32_DES     5
49
/* EndOfWarning */
55
/* EndOfWarning */
50
#define TSS_DES     6
56
#define TSS_DES     6
51
 
57
 
52
 
58
 
53
 
59
 
54
#ifdef CONFIG_FB
60
#ifdef CONFIG_FB
55
 
61
 
56
#define VESA_INIT_DES       8
62
#define VESA_INIT_DES       8
57
#define VESA_INIT_SEGMENT 0x8000
63
#define VESA_INIT_SEGMENT 0x8000
58
#undef GDT_ITEMS 
64
#undef GDT_ITEMS 
59
#define GDT_ITEMS 9
65
#define GDT_ITEMS 9
60
 
66
 
61
#endif /*CONFIG_FB*/
67
#endif /*CONFIG_FB*/
62
 
68
 
63
 
69
 
64
 
70
 
65
#define gdtselector(des)    ((des)<<3)
71
#define gdtselector(des)    ((des)<<3)
66
#define idtselector(des)        ((des)<<4)
72
#define idtselector(des)        ((des)<<4)
67
 
73
 
68
#define PL_KERNEL   0
74
#define PL_KERNEL   0
69
#define PL_USER     3
75
#define PL_USER     3
70
 
76
 
71
#define AR_PRESENT  (1<<7)
77
#define AR_PRESENT  (1<<7)
72
#define AR_DATA     (2<<3)
78
#define AR_DATA     (2<<3)
73
#define AR_CODE     (3<<3)
79
#define AR_CODE     (3<<3)
74
#define AR_WRITABLE (1<<1)
80
#define AR_WRITABLE (1<<1)
75
#define AR_READABLE     (1<<1)
81
#define AR_READABLE     (1<<1)
76
#define AR_TSS      (0x9)
82
#define AR_TSS      (0x9)
77
#define AR_INTERRUPT    (0xe)
83
#define AR_INTERRUPT    (0xe)
78
#define AR_TRAP         (0xf)
84
#define AR_TRAP         (0xf)
79
 
85
 
80
#define DPL_KERNEL  (PL_KERNEL<<5)
86
#define DPL_KERNEL  (PL_KERNEL<<5)
81
#define DPL_USER    (PL_USER<<5)
87
#define DPL_USER    (PL_USER<<5)
82
 
88
 
83
#define TSS_BASIC_SIZE  104
89
#define TSS_BASIC_SIZE  104
84
#define TSS_IOMAP_SIZE  (16*1024+1) /* 16K for bitmap + 1 terminating byte for convenience */
90
#define TSS_IOMAP_SIZE  (16*1024+1) /* 16K for bitmap + 1 terminating byte for convenience */
85
 
91
 
86
#define IO_PORTS    (64*1024)
92
#define IO_PORTS    (64*1024)
87
 
93
 
88
#ifndef __ASM__
94
#ifndef __ASM__
89
 
95
 
90
struct descriptor {
96
struct descriptor {
91
    unsigned limit_0_15: 16;
97
    unsigned limit_0_15: 16;
92
    unsigned base_0_15: 16;
98
    unsigned base_0_15: 16;
93
    unsigned base_16_23: 8;
99
    unsigned base_16_23: 8;
94
    unsigned access: 8;
100
    unsigned access: 8;
95
    unsigned limit_16_19: 4;
101
    unsigned limit_16_19: 4;
96
    unsigned available: 1;
102
    unsigned available: 1;
97
    unsigned longmode: 1;
103
    unsigned longmode: 1;
98
    unsigned special: 1;
104
    unsigned special: 1;
99
    unsigned granularity : 1;
105
    unsigned granularity : 1;
100
    unsigned base_24_31: 8;
106
    unsigned base_24_31: 8;
101
} __attribute__ ((packed));
107
} __attribute__ ((packed));
102
typedef struct descriptor descriptor_t;
108
typedef struct descriptor descriptor_t;
103
 
109
 
104
struct tss_descriptor {
110
struct tss_descriptor {
105
    unsigned limit_0_15: 16;
111
    unsigned limit_0_15: 16;
106
    unsigned base_0_15: 16;
112
    unsigned base_0_15: 16;
107
    unsigned base_16_23: 8;
113
    unsigned base_16_23: 8;
108
    unsigned type: 4;
114
    unsigned type: 4;
109
    unsigned : 1;
115
    unsigned : 1;
110
    unsigned dpl : 2;
116
    unsigned dpl : 2;
111
    unsigned present : 1;
117
    unsigned present : 1;
112
    unsigned limit_16_19: 4;
118
    unsigned limit_16_19: 4;
113
    unsigned available: 1;
119
    unsigned available: 1;
114
    unsigned : 2;
120
    unsigned : 2;
115
    unsigned granularity : 1;
121
    unsigned granularity : 1;
116
    unsigned base_24_31: 8;
122
    unsigned base_24_31: 8;
117
    unsigned base_32_63 : 32;
123
    unsigned base_32_63 : 32;
118
    unsigned  : 32;
124
    unsigned  : 32;
119
} __attribute__ ((packed));
125
} __attribute__ ((packed));
120
typedef struct tss_descriptor tss_descriptor_t;
126
typedef struct tss_descriptor tss_descriptor_t;
121
 
127
 
122
struct idescriptor {
128
struct idescriptor {
123
    unsigned offset_0_15: 16;
129
    unsigned offset_0_15: 16;
124
    unsigned selector: 16;
130
    unsigned selector: 16;
125
    unsigned ist:3;
131
    unsigned ist:3;
126
    unsigned unused: 5;
132
    unsigned unused: 5;
127
    unsigned type: 5;
133
    unsigned type: 5;
128
    unsigned dpl: 2;
134
    unsigned dpl: 2;
129
    unsigned present : 1;
135
    unsigned present : 1;
130
    unsigned offset_16_31: 16;
136
    unsigned offset_16_31: 16;
131
    unsigned offset_32_63: 32;
137
    unsigned offset_32_63: 32;
132
    unsigned  : 32;
138
    unsigned  : 32;
133
} __attribute__ ((packed));
139
} __attribute__ ((packed));
134
typedef struct idescriptor idescriptor_t;
140
typedef struct idescriptor idescriptor_t;
135
 
141
 
136
struct ptr_16_64 {
142
struct ptr_16_64 {
137
    __u16 limit;
143
    __u16 limit;
138
    __u64 base;
144
    __u64 base;
139
} __attribute__ ((packed));
145
} __attribute__ ((packed));
140
typedef struct ptr_16_64 ptr_16_64_t;
146
typedef struct ptr_16_64 ptr_16_64_t;
141
 
147
 
142
struct ptr_16_32 {
148
struct ptr_16_32 {
143
    __u16 limit;
149
    __u16 limit;
144
    __u32 base;
150
    __u32 base;
145
} __attribute__ ((packed));
151
} __attribute__ ((packed));
146
typedef struct ptr_16_32 ptr_16_32_t;
152
typedef struct ptr_16_32 ptr_16_32_t;
147
 
153
 
148
struct tss {
154
struct tss {
149
    __u32 reserve1;
155
    __u32 reserve1;
150
    __u64 rsp0;
156
    __u64 rsp0;
151
    __u64 rsp1;
157
    __u64 rsp1;
152
    __u64 rsp2;
158
    __u64 rsp2;
153
    __u64 reserve2;
159
    __u64 reserve2;
154
    __u64 ist1;
160
    __u64 ist1;
155
    __u64 ist2;
161
    __u64 ist2;
156
    __u64 ist3;
162
    __u64 ist3;
157
    __u64 ist4;
163
    __u64 ist4;
158
    __u64 ist5;
164
    __u64 ist5;
159
    __u64 ist6;
165
    __u64 ist6;
160
    __u64 ist7;
166
    __u64 ist7;
161
    __u64 reserve3;
167
    __u64 reserve3;
162
    __u16 reserve4;
168
    __u16 reserve4;
163
    __u16 iomap_base;
169
    __u16 iomap_base;
164
    __u8 iomap[TSS_IOMAP_SIZE];
170
    __u8 iomap[TSS_IOMAP_SIZE];
165
} __attribute__ ((packed));
171
} __attribute__ ((packed));
166
typedef struct tss tss_t;
172
typedef struct tss tss_t;
167
 
173
 
168
extern tss_t *tss_p;
174
extern tss_t *tss_p;
169
 
175
 
170
extern descriptor_t gdt[];
176
extern descriptor_t gdt[];
171
extern idescriptor_t idt[];
177
extern idescriptor_t idt[];
172
 
178
 
173
extern ptr_16_64_t gdtr;
179
extern ptr_16_64_t gdtr;
174
extern ptr_16_32_t bootstrap_gdtr;
180
extern ptr_16_32_t bootstrap_gdtr;
175
extern ptr_16_32_t protected_ap_gdtr;
181
extern ptr_16_32_t protected_ap_gdtr;
176
 
182
 
177
extern void pm_init(void);
183
extern void pm_init(void);
178
 
184
 
179
extern void gdt_tss_setbase(descriptor_t *d, __address base);
185
extern void gdt_tss_setbase(descriptor_t *d, __address base);
180
extern void gdt_tss_setlimit(descriptor_t *d, __u32 limit);
186
extern void gdt_tss_setlimit(descriptor_t *d, __u32 limit);
181
 
187
 
182
extern void idt_init(void);
188
extern void idt_init(void);
183
extern void idt_setoffset(idescriptor_t *d, __address offset);
189
extern void idt_setoffset(idescriptor_t *d, __address offset);
184
 
190
 
185
extern void tss_initialize(tss_t *t);
191
extern void tss_initialize(tss_t *t);
186
 
192
 
187
#endif /* __ASM__ */
193
#endif /* __ASM__ */
188
 
194
 
189
#endif
195
#endif
-
 
196
 
-
 
197
 /** @}
-
 
198
 */
-
 
199
 
190
 
200