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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
| /** @file
| C based implementation of IA32 interrupt handling only
| requiring a minimal assembly interrupt entry point.
|
| Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR>
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
| **/
|
| #include "CpuDxe.h"
| #include "CpuGdt.h"
|
| //
| // Global descriptor table (GDT) Template
| //
| STATIC GDT_ENTRIES mGdtTemplate = {
| //
| // NULL_SEL
| //
| {
| 0x0, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x0, // type
| 0x0, // limit 19:16, flags
| 0x0, // base 31:24
| },
| //
| // LINEAR_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x092, // present, ring 0, data, read/write
| 0x0CF, // page-granular, 32-bit
| 0x0,
| },
| //
| // LINEAR_CODE_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x09F, // present, ring 0, code, execute/read, conforming, accessed
| 0x0CF, // page-granular, 32-bit
| 0x0,
| },
| //
| // SYS_DATA_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x093, // present, ring 0, data, read/write, accessed
| 0x0CF, // page-granular, 32-bit
| 0x0,
| },
| //
| // SYS_CODE_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x09A, // present, ring 0, code, execute/read
| 0x0CF, // page-granular, 32-bit
| 0x0,
| },
| //
| // SYS_CODE16_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x09A, // present, ring 0, code, execute/read
| 0x08F, // page-granular, 16-bit
| 0x0, // base 31:24
| },
| //
| // LINEAR_DATA64_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x092, // present, ring 0, data, read/write
| 0x0CF, // page-granular, 32-bit
| 0x0,
| },
| //
| // LINEAR_CODE64_SEL
| //
| {
| 0x0FFFF, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x09A, // present, ring 0, code, execute/read
| 0x0AF, // page-granular, 64-bit code
| 0x0, // base (high)
| },
| //
| // SPARE5_SEL
| //
| {
| 0x0, // limit 15:0
| 0x0, // base 15:0
| 0x0, // base 23:16
| 0x0, // type
| 0x0, // limit 19:16, flags
| 0x0, // base 31:24
| },
| };
|
| /**
| Initialize Global Descriptor Table.
|
| **/
| VOID
| InitGlobalDescriptorTable (
| VOID
| )
| {
| EFI_STATUS Status;
| GDT_ENTRIES *Gdt;
| IA32_DESCRIPTOR Gdtr;
| EFI_PHYSICAL_ADDRESS Memory;
|
| //
| // Allocate Runtime Data below 4GB for the GDT
| // AP uses the same GDT when it's waken up from real mode so
| // the GDT needs to be below 4GB.
| //
| Memory = SIZE_4GB - 1;
| Status = gBS->AllocatePages (
| AllocateMaxAddress,
| EfiRuntimeServicesData,
| EFI_SIZE_TO_PAGES (sizeof (mGdtTemplate)),
| &Memory
| );
| ASSERT_EFI_ERROR (Status);
| ASSERT ((Memory != 0) && (Memory < SIZE_4GB));
| Gdt = (GDT_ENTRIES *) (UINTN) Memory;
|
| //
| // Initialize all GDT entries
| //
| CopyMem (Gdt, &mGdtTemplate, sizeof (mGdtTemplate));
|
| //
| // Write GDT register
| //
| Gdtr.Base = (UINT32) (UINTN) Gdt;
| Gdtr.Limit = (UINT16) (sizeof (mGdtTemplate) - 1);
| AsmWriteGdtr (&Gdtr);
|
| //
| // Update selector (segment) registers base on new GDT
| //
| SetCodeSelector ((UINT16)CPU_CODE_SEL);
| SetDataSelectors ((UINT16)CPU_DATA_SEL);
| }
|
|