summaryrefslogtreecommitdiff
path: root/i386/i386/gdt.h
blob: 9879ad3ebfe0042ae4f3ee900b11f00cd700e940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* 
 * Mach Operating System
 * Copyright (c) 1991,1990 Carnegie Mellon University
 * Copyright (c) 1991 IBM Corporation 
 * Copyright (c) 1994 The University of Utah and
 * the Computer Systems Laboratory (CSL).
 * All Rights Reserved.
 * 
 * Permission to use, copy, modify and distribute this software and its
 * documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation,
 * and that the name IBM not be used in advertising or publicity 
 * pertaining to distribution of the software without specific, written
 * prior permission.
 * 
 * CARNEGIE MELLON, IBM, AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON, IBM, AND CSL DISCLAIM ANY LIABILITY OF ANY KIND
 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 * 
 * Carnegie Mellon requests users of this software to return to
 * 
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 * 
 * any improvements or extensions that they make and grant Carnegie Mellon
 * the rights to redistribute these changes.
 */

#ifndef _I386_GDT_
#define _I386_GDT_

#include "seg.h"

/*
 * Kernel descriptors for Mach - 32-bit flat address space.
 */
#define	KERNEL_CS	(0x08 | KERNEL_RING)		/* kernel code */
#define	KERNEL_DS	(0x10 | KERNEL_RING)		/* kernel data */


#ifndef	MACH_PV_DESCRIPTORS
#define	KERNEL_LDT	0x18		/* master LDT */
#endif	/* MACH_PV_DESCRIPTORS */

#ifdef __x86_64__
/* LDT needs two entries */
#define	KERNEL_TSS	0x40		/* master TSS (uniprocessor) */
#else
#define	KERNEL_TSS	0x20		/* master TSS (uniprocessor) */
#endif


#define	USER_LDT	0x28		/* place for per-thread LDT */

#ifdef __x86_64__
/* LDT needs two entries */
#define	USER_TSS	0x58		/* place for per-thread TSS
					   that holds IO bitmap */
#else
#define	USER_TSS	0x30		/* place for per-thread TSS
					   that holds IO bitmap */
#endif


#ifndef	MACH_PV_DESCRIPTORS
#define	LINEAR_DS	0x38		/* linear mapping */
#endif	/* MACH_PV_DESCRIPTORS */

/*			0x40		   was USER_FPREGS, now used by TSS in 64bit mode */

#define	USER_GDT	0x48		/* user-defined 32bit GDT entries */
#define	USER_GDT_SLOTS	2

/*			0x58		   used by user TSS in 64bit mode */

#ifdef __x86_64__
#define	GDTSZ		sel_idx(0x60)
#else
#define	GDTSZ		sel_idx(0x58)
#endif

extern struct real_descriptor gdt[GDTSZ];

/* Fill a segment descriptor in the GDT.  */
#define _fill_gdt_descriptor(_gdt, segment, base, limit, access, sizebits) \
	fill_descriptor(&_gdt[sel_idx(segment)], base, limit, access, sizebits)

#define fill_gdt_descriptor(segment, base, limit, access, sizebits) \
	_fill_gdt_descriptor(gdt, segment, base, limit, access, sizebits)

/* 64bit variant */
#ifdef __x86_64__
#define _fill_gdt_descriptor64(_gdt, segment, base, limit, access, sizebits) \
	fill_descriptor64((struct real_descriptor64 *) &_gdt[sel_idx(segment)], base, limit, access, sizebits)

#define fill_gdt_descriptor64(segment, base, limit, access, sizebits) \
	_fill_gdt_descriptor64(gdt, segment, base, limit, access, sizebits)
#endif

/* System descriptor variants */
#ifdef __x86_64__
#define _fill_gdt_sys_descriptor(_gdt, segment, base, limit, access, sizebits) \
	_fill_gdt_descriptor64(_gdt, segment, base, limit, access, sizebits)
#define fill_gdt_sys_descriptor(segment, base, limit, access, sizebits) \
	fill_gdt_descriptor64(segment, base, limit, access, sizebits)
#else
#define _fill_gdt_sys_descriptor(_gdt, segment, base, limit, access, sizebits) \
	_fill_gdt_descriptor(_gdt, segment, base, limit, access, sizebits)
#define fill_gdt_sys_descriptor(segment, base, limit, access, sizebits) \
	fill_gdt_descriptor(segment, base, limit, access, sizebits)
#endif

extern void gdt_init(void);

#endif /* _I386_GDT_ */