summaryrefslogtreecommitdiff
path: root/i386/i386/gdt.c
blob: ce9816938c5c7b5aaaad7fbff9fcd9916d6c591b (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
/*
 * Mach Operating System
 * Copyright (c) 1991,1990 Carnegie Mellon University
 * Copyright (c) 1991 IBM Corporation
 * 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 AND IBM ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON AND IBM 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.
 */
/*
 * Global descriptor table.
 */
#include <mach/machine/vm_types.h>

#include "vm_param.h"
#include "gdt.h"

#include "cpu_number.h"

extern void etext();

/* The BASE_TSS in OSKit has no I/O permission bitmap, but we want
   one.  So we replace it with an extended TSS at link-time.  */
#include <machine/tss.h>
#include <machine/io_perm.h>
static struct task_tss ktss;
extern struct x86_tss base_tss __attribute__ ((alias ("ktss")));

void
gdt_init()
{
        /* Initialize kernel code segment descriptor, allowing
	   only kernel text to be executed in kernel mode.
	   This will have to change to allow loaded modules and such.
	   A limit of (LINEAR_MAX_KERNEL_ADDRESS - LINEAR_MIN_KERNEL_ADDRESS)
	   allows any kernel virtual address to be executed, but not user-mode
	   addresses accessible from kernel mode.  */
	fill_gdt_descriptor(KERNEL_CS,
			    LINEAR_MIN_KERNEL_ADDRESS,
			    (oskit_addr_t)etext - 1,
			    ACC_PL_K|ACC_CODE_R, SZ_32);

	/* Initialize kernel data segment descriptor to allow any offset
	   so that any linear address is accessible, including wrapping
	   around to zero and covering the user-mode range.  */
	fill_gdt_descriptor(KERNEL_DS,
			    LINEAR_MIN_KERNEL_ADDRESS, 0xffffffff,
			    ACC_PL_K|ACC_DATA_W, SZ_32);

	/* Copy the values to the slots used by oskit code.  */
	gdt[sel_idx (BASE_KERNEL_CS)] = gdt[sel_idx (KERNEL_CS)];
	gdt[sel_idx (BASE_KERNEL_DS)] = gdt[sel_idx (KERNEL_DS)];

	/* Set up the KERNEL_TSS to include an I/O permission bitmap.  */
	fill_gdt_descriptor(KERNEL_TSS,
			    kvtolin(&ktss),
			    sizeof(struct task_tss) - 1,
			    ACC_PL_K|ACC_TSS, 0);
	ktss.tss.io_bit_map_offset = IOPB_INVAL;
	ktss.barrier = 0xFF;

#if MULTIPROCESSOR
	/*
	 * Set the %gs segment register to point at
	 * a word containing the cpu number.
	 */
	fill_gdt_descriptor(KERNEL_GS,
			    kvtolin((oskit_addr_t)&master_cpu),
			    sizeof(int) - 1,
			    ACC_PL_K|ACC_DATA, SZ_32);
#endif
}