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 ia32  
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#ifndef __PM_H__
35
#ifndef __PM_H__
30
#define __PM_H__
36
#define __PM_H__
31
 
37
 
32
#define IDT_ITEMS 64
38
#define IDT_ITEMS 64
33
#define GDT_ITEMS 7
39
#define GDT_ITEMS 7
34
 
40
 
35
#define VESA_INIT_SEGMENT 0x8000
41
#define VESA_INIT_SEGMENT 0x8000
36
 
42
 
37
#define NULL_DES    0
43
#define NULL_DES    0
38
#define KTEXT_DES   1
44
#define KTEXT_DES   1
39
#define KDATA_DES   2
45
#define KDATA_DES   2
40
#define UTEXT_DES   3
46
#define UTEXT_DES   3
41
#define UDATA_DES   4
47
#define UDATA_DES   4
42
#define TSS_DES     5
48
#define TSS_DES     5
43
#define TLS_DES         6 /* Pointer to Thread-Local-Storage data */
49
#define TLS_DES         6 /* Pointer to Thread-Local-Storage data */
44
 
50
 
45
#ifdef CONFIG_FB
51
#ifdef CONFIG_FB
46
 
52
 
47
#define VESA_INIT_SEGMENT 0x8000
53
#define VESA_INIT_SEGMENT 0x8000
48
#define VESA_INIT_DES 7
54
#define VESA_INIT_DES 7
49
#undef GDT_ITEMS
55
#undef GDT_ITEMS
50
#define GDT_ITEMS 8
56
#define GDT_ITEMS 8
51
 
57
 
52
#endif /* CONFIG_FB */
58
#endif /* CONFIG_FB */
53
 
59
 
54
 
60
 
55
#define selector(des)   ((des)<<3)
61
#define selector(des)   ((des)<<3)
56
 
62
 
57
#define PL_KERNEL   0
63
#define PL_KERNEL   0
58
#define PL_USER     3
64
#define PL_USER     3
59
 
65
 
60
#define AR_PRESENT  (1<<7)
66
#define AR_PRESENT  (1<<7)
61
#define AR_DATA     (2<<3)
67
#define AR_DATA     (2<<3)
62
#define AR_CODE     (3<<3)
68
#define AR_CODE     (3<<3)
63
#define AR_WRITABLE (1<<1)
69
#define AR_WRITABLE (1<<1)
64
#define AR_INTERRUPT    (0xe)
70
#define AR_INTERRUPT    (0xe)
65
#define AR_TSS      (0x9)
71
#define AR_TSS      (0x9)
66
 
72
 
67
#define DPL_KERNEL  (PL_KERNEL<<5)
73
#define DPL_KERNEL  (PL_KERNEL<<5)
68
#define DPL_USER    (PL_USER<<5)
74
#define DPL_USER    (PL_USER<<5)
69
 
75
 
70
#define TSS_BASIC_SIZE  104
76
#define TSS_BASIC_SIZE  104
71
#define TSS_IOMAP_SIZE  (16*1024+1) /* 16K for bitmap + 1 terminating byte for convenience */
77
#define TSS_IOMAP_SIZE  (16*1024+1) /* 16K for bitmap + 1 terminating byte for convenience */
72
 
78
 
73
#define IO_PORTS    (64*1024)
79
#define IO_PORTS    (64*1024)
74
 
80
 
75
#ifndef __ASM__
81
#ifndef __ASM__
76
 
82
 
77
#include <arch/types.h>
83
#include <arch/types.h>
78
#include <typedefs.h>
84
#include <typedefs.h>
79
#include <arch/context.h>
85
#include <arch/context.h>
80
 
86
 
81
struct ptr_16_32 {
87
struct ptr_16_32 {
82
    __u16 limit;
88
    __u16 limit;
83
    __u32 base;
89
    __u32 base;
84
} __attribute__ ((packed));
90
} __attribute__ ((packed));
85
typedef struct ptr_16_32 ptr_16_32_t;
91
typedef struct ptr_16_32 ptr_16_32_t;
86
 
92
 
87
struct descriptor {
93
struct descriptor {
88
    unsigned limit_0_15: 16;
94
    unsigned limit_0_15: 16;
89
    unsigned base_0_15: 16;
95
    unsigned base_0_15: 16;
90
    unsigned base_16_23: 8;
96
    unsigned base_16_23: 8;
91
    unsigned access: 8;
97
    unsigned access: 8;
92
    unsigned limit_16_19: 4;
98
    unsigned limit_16_19: 4;
93
    unsigned available: 1;
99
    unsigned available: 1;
94
    unsigned unused: 1;
100
    unsigned unused: 1;
95
    unsigned special: 1;
101
    unsigned special: 1;
96
    unsigned granularity : 1;
102
    unsigned granularity : 1;
97
    unsigned base_24_31: 8;
103
    unsigned base_24_31: 8;
98
} __attribute__ ((packed));
104
} __attribute__ ((packed));
99
typedef struct descriptor  descriptor_t;
105
typedef struct descriptor  descriptor_t;
100
 
106
 
101
struct idescriptor {
107
struct idescriptor {
102
    unsigned offset_0_15: 16;
108
    unsigned offset_0_15: 16;
103
    unsigned selector: 16;
109
    unsigned selector: 16;
104
    unsigned unused: 8;
110
    unsigned unused: 8;
105
    unsigned access: 8;
111
    unsigned access: 8;
106
    unsigned offset_16_31: 16;
112
    unsigned offset_16_31: 16;
107
} __attribute__ ((packed));
113
} __attribute__ ((packed));
108
typedef struct idescriptor idescriptor_t;
114
typedef struct idescriptor idescriptor_t;
109
 
115
 
110
struct tss {
116
struct tss {
111
    __u16 link;
117
    __u16 link;
112
    unsigned : 16;
118
    unsigned : 16;
113
    __u32 esp0;
119
    __u32 esp0;
114
    __u16 ss0;
120
    __u16 ss0;
115
    unsigned : 16;
121
    unsigned : 16;
116
    __u32 esp1;
122
    __u32 esp1;
117
    __u16 ss1;
123
    __u16 ss1;
118
    unsigned : 16;
124
    unsigned : 16;
119
    __u32 esp2;
125
    __u32 esp2;
120
    __u16 ss2;
126
    __u16 ss2;
121
    unsigned : 16;
127
    unsigned : 16;
122
    __u32 cr3;
128
    __u32 cr3;
123
    __u32 eip;
129
    __u32 eip;
124
    __u32 eflags;
130
    __u32 eflags;
125
    __u32 eax;
131
    __u32 eax;
126
    __u32 ecx;
132
    __u32 ecx;
127
    __u32 edx;
133
    __u32 edx;
128
    __u32 ebx;
134
    __u32 ebx;
129
    __u32 esp;
135
    __u32 esp;
130
    __u32 ebp;
136
    __u32 ebp;
131
    __u32 esi;
137
    __u32 esi;
132
    __u32 edi;
138
    __u32 edi;
133
    __u16 es;
139
    __u16 es;
134
    unsigned : 16;
140
    unsigned : 16;
135
    __u16 cs;
141
    __u16 cs;
136
    unsigned : 16;
142
    unsigned : 16;
137
    __u16 ss;
143
    __u16 ss;
138
    unsigned : 16;
144
    unsigned : 16;
139
    __u16 ds;
145
    __u16 ds;
140
    unsigned : 16;
146
    unsigned : 16;
141
    __u16 fs;
147
    __u16 fs;
142
    unsigned : 16;
148
    unsigned : 16;
143
    __u16 gs;
149
    __u16 gs;
144
    unsigned : 16;
150
    unsigned : 16;
145
    __u16 ldtr;
151
    __u16 ldtr;
146
    unsigned : 16;
152
    unsigned : 16;
147
    unsigned : 16;
153
    unsigned : 16;
148
    __u16 iomap_base;
154
    __u16 iomap_base;
149
    __u8 iomap[TSS_IOMAP_SIZE];
155
    __u8 iomap[TSS_IOMAP_SIZE];
150
} __attribute__ ((packed));
156
} __attribute__ ((packed));
151
typedef struct tss tss_t;
157
typedef struct tss tss_t;
152
 
158
 
153
extern ptr_16_32_t gdtr;
159
extern ptr_16_32_t gdtr;
154
extern ptr_16_32_t bootstrap_gdtr;
160
extern ptr_16_32_t bootstrap_gdtr;
155
extern ptr_16_32_t protected_ap_gdtr;
161
extern ptr_16_32_t protected_ap_gdtr;
156
extern struct tss *tss_p;
162
extern struct tss *tss_p;
157
 
163
 
158
extern descriptor_t gdt[];
164
extern descriptor_t gdt[];
159
 
165
 
160
extern void pm_init(void);
166
extern void pm_init(void);
161
 
167
 
162
extern void gdt_setbase(descriptor_t *d, __address base);
168
extern void gdt_setbase(descriptor_t *d, __address base);
163
extern void gdt_setlimit(descriptor_t *d, __u32 limit);
169
extern void gdt_setlimit(descriptor_t *d, __u32 limit);
164
 
170
 
165
extern void idt_init(void);
171
extern void idt_init(void);
166
extern void idt_setoffset(idescriptor_t *d, __address offset);
172
extern void idt_setoffset(idescriptor_t *d, __address offset);
167
 
173
 
168
extern void tss_initialize(tss_t *t);
174
extern void tss_initialize(tss_t *t);
169
extern void set_tls_desc(__address tls);
175
extern void set_tls_desc(__address tls);
170
 
176
 
171
#endif /* __ASM__ */
177
#endif /* __ASM__ */
172
 
178
 
173
#endif
179
#endif
-
 
180
 
-
 
181
 /** @}
-
 
182
 */
-
 
183
 
174
 
184