x86: use user_mode macro
[safe/jmp/linux-2.6] / include / asm-x86 / segment.h
1 #ifndef ASM_X86__SEGMENT_H
2 #define ASM_X86__SEGMENT_H
3
4 /* Constructor for a conventional segment GDT (or LDT) entry */
5 /* This is a macro so it can be used in initializers */
6 #define GDT_ENTRY(flags, base, limit)                   \
7         ((((base)  & 0xff000000ULL) << (56-24)) |       \
8          (((flags) & 0x0000f0ffULL) << 40) |            \
9          (((limit) & 0x000f0000ULL) << (48-16)) |       \
10          (((base)  & 0x00ffffffULL) << 16) |            \
11          (((limit) & 0x0000ffffULL)))
12
13 /* Simple and small GDT entries for booting only */
14
15 #define GDT_ENTRY_BOOT_CS       2
16 #define __BOOT_CS               (GDT_ENTRY_BOOT_CS * 8)
17
18 #define GDT_ENTRY_BOOT_DS       (GDT_ENTRY_BOOT_CS + 1)
19 #define __BOOT_DS               (GDT_ENTRY_BOOT_DS * 8)
20
21 #define GDT_ENTRY_BOOT_TSS      (GDT_ENTRY_BOOT_CS + 2)
22 #define __BOOT_TSS              (GDT_ENTRY_BOOT_TSS * 8)
23
24 #ifdef CONFIG_X86_32
25 /*
26  * The layout of the per-CPU GDT under Linux:
27  *
28  *   0 - null
29  *   1 - reserved
30  *   2 - reserved
31  *   3 - reserved
32  *
33  *   4 - unused                 <==== new cacheline
34  *   5 - unused
35  *
36  *  ------- start of TLS (Thread-Local Storage) segments:
37  *
38  *   6 - TLS segment #1                 [ glibc's TLS segment ]
39  *   7 - TLS segment #2                 [ Wine's %fs Win32 segment ]
40  *   8 - TLS segment #3
41  *   9 - reserved
42  *  10 - reserved
43  *  11 - reserved
44  *
45  *  ------- start of kernel segments:
46  *
47  *  12 - kernel code segment            <==== new cacheline
48  *  13 - kernel data segment
49  *  14 - default user CS
50  *  15 - default user DS
51  *  16 - TSS
52  *  17 - LDT
53  *  18 - PNPBIOS support (16->32 gate)
54  *  19 - PNPBIOS support
55  *  20 - PNPBIOS support
56  *  21 - PNPBIOS support
57  *  22 - PNPBIOS support
58  *  23 - APM BIOS support
59  *  24 - APM BIOS support
60  *  25 - APM BIOS support
61  *
62  *  26 - ESPFIX small SS
63  *  27 - per-cpu                        [ offset to per-cpu data area ]
64  *  28 - unused
65  *  29 - unused
66  *  30 - unused
67  *  31 - TSS for double fault handler
68  */
69 #define GDT_ENTRY_TLS_MIN       6
70 #define GDT_ENTRY_TLS_MAX       (GDT_ENTRY_TLS_MIN + GDT_ENTRY_TLS_ENTRIES - 1)
71
72 #define GDT_ENTRY_DEFAULT_USER_CS       14
73
74 #define GDT_ENTRY_DEFAULT_USER_DS       15
75
76 #define GDT_ENTRY_KERNEL_BASE   12
77
78 #define GDT_ENTRY_KERNEL_CS             (GDT_ENTRY_KERNEL_BASE + 0)
79
80 #define GDT_ENTRY_KERNEL_DS             (GDT_ENTRY_KERNEL_BASE + 1)
81
82 #define GDT_ENTRY_TSS                   (GDT_ENTRY_KERNEL_BASE + 4)
83 #define GDT_ENTRY_LDT                   (GDT_ENTRY_KERNEL_BASE + 5)
84
85 #define GDT_ENTRY_PNPBIOS_BASE          (GDT_ENTRY_KERNEL_BASE + 6)
86 #define GDT_ENTRY_APMBIOS_BASE          (GDT_ENTRY_KERNEL_BASE + 11)
87
88 #define GDT_ENTRY_ESPFIX_SS             (GDT_ENTRY_KERNEL_BASE + 14)
89 #define __ESPFIX_SS (GDT_ENTRY_ESPFIX_SS * 8)
90
91 #define GDT_ENTRY_PERCPU                        (GDT_ENTRY_KERNEL_BASE + 15)
92 #ifdef CONFIG_SMP
93 #define __KERNEL_PERCPU (GDT_ENTRY_PERCPU * 8)
94 #else
95 #define __KERNEL_PERCPU 0
96 #endif
97
98 #define GDT_ENTRY_DOUBLEFAULT_TSS       31
99
100 /*
101  * The GDT has 32 entries
102  */
103 #define GDT_ENTRIES 32
104
105 /* The PnP BIOS entries in the GDT */
106 #define GDT_ENTRY_PNPBIOS_CS32          (GDT_ENTRY_PNPBIOS_BASE + 0)
107 #define GDT_ENTRY_PNPBIOS_CS16          (GDT_ENTRY_PNPBIOS_BASE + 1)
108 #define GDT_ENTRY_PNPBIOS_DS            (GDT_ENTRY_PNPBIOS_BASE + 2)
109 #define GDT_ENTRY_PNPBIOS_TS1           (GDT_ENTRY_PNPBIOS_BASE + 3)
110 #define GDT_ENTRY_PNPBIOS_TS2           (GDT_ENTRY_PNPBIOS_BASE + 4)
111
112 /* The PnP BIOS selectors */
113 #define PNP_CS32   (GDT_ENTRY_PNPBIOS_CS32 * 8) /* segment for calling fn */
114 #define PNP_CS16   (GDT_ENTRY_PNPBIOS_CS16 * 8) /* code segment for BIOS */
115 #define PNP_DS     (GDT_ENTRY_PNPBIOS_DS * 8)   /* data segment for BIOS */
116 #define PNP_TS1    (GDT_ENTRY_PNPBIOS_TS1 * 8)  /* transfer data segment */
117 #define PNP_TS2    (GDT_ENTRY_PNPBIOS_TS2 * 8)  /* another data segment */
118
119 /* Bottom two bits of selector give the ring privilege level */
120 #define SEGMENT_RPL_MASK        0x3
121 /* Bit 2 is table indicator (LDT/GDT) */
122 #define SEGMENT_TI_MASK         0x4
123
124 /* User mode is privilege level 3 */
125 #define USER_RPL                0x3
126 /* LDT segment has TI set, GDT has it cleared */
127 #define SEGMENT_LDT             0x4
128 #define SEGMENT_GDT             0x0
129
130 /*
131  * Matching rules for certain types of segments.
132  */
133
134 /* Matches __KERNEL_CS and __USER_CS (they must be 2 entries apart) */
135 #define SEGMENT_IS_FLAT_CODE(x)  (((x) & 0xec) == GDT_ENTRY_KERNEL_CS * 8)
136
137 /* Matches PNP_CS32 and PNP_CS16 (they must be consecutive) */
138 #define SEGMENT_IS_PNP_CODE(x)   (((x) & 0xf4) == GDT_ENTRY_PNPBIOS_BASE * 8)
139
140
141 #else
142 #include <asm/cache.h>
143
144 #define GDT_ENTRY_KERNEL32_CS 1
145 #define GDT_ENTRY_KERNEL_CS 2
146 #define GDT_ENTRY_KERNEL_DS 3
147
148 #define __KERNEL32_CS   (GDT_ENTRY_KERNEL32_CS * 8)
149
150 /*
151  * we cannot use the same code segment descriptor for user and kernel
152  * -- not even in the long flat mode, because of different DPL /kkeil
153  * The segment offset needs to contain a RPL. Grr. -AK
154  * GDT layout to get 64bit syscall right (sysret hardcodes gdt offsets)
155  */
156 #define GDT_ENTRY_DEFAULT_USER32_CS 4
157 #define GDT_ENTRY_DEFAULT_USER_DS 5
158 #define GDT_ENTRY_DEFAULT_USER_CS 6
159 #define __USER32_CS   (GDT_ENTRY_DEFAULT_USER32_CS * 8 + 3)
160 #define __USER32_DS     __USER_DS
161
162 #define GDT_ENTRY_TSS 8 /* needs two entries */
163 #define GDT_ENTRY_LDT 10 /* needs two entries */
164 #define GDT_ENTRY_TLS_MIN 12
165 #define GDT_ENTRY_TLS_MAX 14
166
167 #define GDT_ENTRY_PER_CPU 15    /* Abused to load per CPU data from limit */
168 #define __PER_CPU_SEG   (GDT_ENTRY_PER_CPU * 8 + 3)
169
170 /* TLS indexes for 64bit - hardcoded in arch_prctl */
171 #define FS_TLS 0
172 #define GS_TLS 1
173
174 #define GS_TLS_SEL ((GDT_ENTRY_TLS_MIN+GS_TLS)*8 + 3)
175 #define FS_TLS_SEL ((GDT_ENTRY_TLS_MIN+FS_TLS)*8 + 3)
176
177 #define GDT_ENTRIES 16
178
179 #endif
180
181 #define __KERNEL_CS     (GDT_ENTRY_KERNEL_CS * 8)
182 #define __KERNEL_DS     (GDT_ENTRY_KERNEL_DS * 8)
183 #define __USER_DS     (GDT_ENTRY_DEFAULT_USER_DS* 8 + 3)
184 #define __USER_CS     (GDT_ENTRY_DEFAULT_USER_CS* 8 + 3)
185 #ifndef CONFIG_PARAVIRT
186 #define get_kernel_rpl()  0
187 #endif
188
189 /* User mode is privilege level 3 */
190 #define USER_RPL                0x3
191 /* LDT segment has TI set, GDT has it cleared */
192 #define SEGMENT_LDT             0x4
193 #define SEGMENT_GDT             0x0
194
195 /* Bottom two bits of selector give the ring privilege level */
196 #define SEGMENT_RPL_MASK        0x3
197 /* Bit 2 is table indicator (LDT/GDT) */
198 #define SEGMENT_TI_MASK         0x4
199
200 #define IDT_ENTRIES 256
201 #define NUM_EXCEPTION_VECTORS 32
202 #define GDT_SIZE (GDT_ENTRIES * 8)
203 #define GDT_ENTRY_TLS_ENTRIES 3
204 #define TLS_SIZE (GDT_ENTRY_TLS_ENTRIES * 8)
205
206 #ifdef __KERNEL__
207 #ifndef __ASSEMBLY__
208 extern const char early_idt_handlers[NUM_EXCEPTION_VECTORS][10];
209 #endif
210 #endif
211
212 #endif /* ASM_X86__SEGMENT_H */