xref: /freebsd/sys/amd64/include/segments.h (revision 4d846d26)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1989, 1990 William F. Jolitz
5  * Copyright (c) 1990 The Regents of the University of California.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * William Jolitz.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *	from: @(#)segments.h	7.1 (Berkeley) 5/9/91
36  * $FreeBSD$
37  */
38 
39 #ifdef __i386__
40 #include <i386/segments.h>
41 #else /* !__i386__ */
42 
43 #ifndef _MACHINE_SEGMENTS_H_
44 #define	_MACHINE_SEGMENTS_H_
45 
46 /*
47  * AMD64 Segmentation Data Structures and definitions
48  */
49 
50 #include <x86/segments.h>
51 
52 /*
53  * System segment descriptors (128 bit wide)
54  */
55 struct	system_segment_descriptor {
56 	u_int64_t sd_lolimit:16;	/* segment extent (lsb) */
57 	u_int64_t sd_lobase:24;		/* segment base address (lsb) */
58 	u_int64_t sd_type:5;		/* segment type */
59 	u_int64_t sd_dpl:2;		/* segment descriptor priority level */
60 	u_int64_t sd_p:1;		/* segment descriptor present */
61 	u_int64_t sd_hilimit:4;		/* segment extent (msb) */
62 	u_int64_t sd_xx0:3;		/* unused */
63 	u_int64_t sd_gran:1;		/* limit granularity (byte/page units)*/
64 	u_int64_t sd_hibase:40 __packed;/* segment base address  (msb) */
65 	u_int64_t sd_xx1:8;
66 	u_int64_t sd_mbz:5;		/* MUST be zero */
67 	u_int64_t sd_xx2:19;
68 } __packed;
69 
70 /*
71  * Software definitions are in this convenient format,
72  * which are translated into inconvenient segment descriptors
73  * when needed to be used by the 386 hardware
74  */
75 
76 struct	soft_segment_descriptor {
77 	unsigned long ssd_base;		/* segment base address  */
78 	unsigned long ssd_limit;	/* segment extent */
79 	unsigned long ssd_type:5;	/* segment type */
80 	unsigned long ssd_dpl:2;	/* segment descriptor priority level */
81 	unsigned long ssd_p:1;		/* segment descriptor present */
82 	unsigned long ssd_long:1;	/* long mode (for %cs) */
83 	unsigned long ssd_def32:1;	/* default 32 vs 16 bit size */
84 	unsigned long ssd_gran:1;	/* limit granularity (byte/page units)*/
85 } __packed;
86 
87 /*
88  * region descriptors, used to load gdt/idt tables before segments yet exist.
89  */
90 struct region_descriptor {
91 	uint64_t rd_limit:16;		/* segment extent */
92 	uint64_t rd_base:64 __packed;	/* base address  */
93 } __packed;
94 
95 #ifdef _KERNEL
96 extern struct soft_segment_descriptor gdt_segs[];
97 extern struct gate_descriptor *idt;
98 extern struct region_descriptor r_idt;
99 
100 void	lgdt(struct region_descriptor *rdp);
101 void	sdtossd(struct user_segment_descriptor *sdp,
102 	    struct soft_segment_descriptor *ssdp);
103 void	ssdtosd(struct soft_segment_descriptor *ssdp,
104 	    struct user_segment_descriptor *sdp);
105 void	ssdtosyssd(struct soft_segment_descriptor *ssdp,
106 	    struct system_segment_descriptor *sdp);
107 void	update_gdt_gsbase(struct thread *td, uint32_t base);
108 void	update_gdt_fsbase(struct thread *td, uint32_t base);
109 #endif /* _KERNEL */
110 
111 #endif /* !_MACHINE_SEGMENTS_H_ */
112 
113 #endif /* __i386__ */
114