]> git.proxmox.com Git - mirror_edk2.git/blob - EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/Thunk16.asm
Add in the 1st version of ECP.
[mirror_edk2.git] / EdkCompatibilityPkg / Foundation / Library / EdkIIGlueLib / Library / BaseLib / X64 / Thunk16.asm
1 ; Copyright (c) 2004, Intel Corporation
2 ; All rights reserved. This program and the accompanying materials
3 ; are licensed and made available under the terms and conditions of the BSD License
4 ; which accompanies this distribution. The full text of the license may be found at
5 ; http://opensource.org/licenses/bsd-license.php
6 ;
7 ; THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
8 ; WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
9 ;
10 ; Module Name:
11 ;
12 ; Thunk.asm
13 ;
14 ; Abstract:
15 ;
16 ; Real mode thunk
17 ;
18 ;------------------------------------------------------------------------------
19
20 EXTERNDEF m16Start:BYTE
21 EXTERNDEF m16Size:WORD
22 EXTERNDEF mThunk16Attr:WORD
23 EXTERNDEF m16Gdt:WORD
24 EXTERNDEF m16GdtrBase:WORD
25 EXTERNDEF mTransition:WORD
26
27 THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15 EQU 2
28 THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL EQU 4
29
30 IA32_REGS STRUC 4t
31 _EDI DD ?
32 _ESI DD ?
33 _EBP DD ?
34 _ESP DD ?
35 _EBX DD ?
36 _EDX DD ?
37 _ECX DD ?
38 _EAX DD ?
39 _DS DW ?
40 _ES DW ?
41 _FS DW ?
42 _GS DW ?
43 _EFLAGS DQ ?
44 _EIP DD ?
45 _CS DW ?
46 _SS DW ?
47 IA32_REGS ENDS
48
49 .const
50
51 m16Size DW InternalAsmThunk16 - m16Start
52 mThunk16Attr DW _ThunkAttr - m16Start
53 m16Gdt DW _NullSeg - m16Start
54 m16GdtrBase DW _16GdtrBase - m16Start
55 mTransition DW _EntryPoint - m16Start
56
57 .code
58
59 m16Start LABEL BYTE
60
61 SavedGdt LABEL FWORD
62 DW ?
63 DQ ?
64
65 ;------------------------------------------------------------------------------
66 ; _BackFromUserCode() takes control in real mode after 'retf' has been executed
67 ; by user code. It will be shadowed to somewhere in memory below 1MB.
68 ;------------------------------------------------------------------------------
69 _BackFromUserCode PROC
70 ;
71 ; The order of saved registers on the stack matches the order they appears
72 ; in IA32_REGS structure. This facilitates wrapper function to extract them
73 ; into that structure.
74 ;
75 ; Some instructions for manipulation of segment registers have to be written
76 ; in opcode since 64-bit MASM prevents accesses to those registers.
77 ;
78 DB 16h ; push ss
79 DB 0eh ; push cs
80 DB 66h
81 call @Base ; push eip
82 @Base:
83 DB 66h
84 push 0 ; reserved high order 32 bits of EFlags
85 pushf ; pushfd actually
86 cli ; disable interrupts
87 push gs
88 push fs
89 DB 6 ; push es
90 DB 1eh ; push ds
91 DB 66h, 60h ; pushad
92 DB 66h, 0bah ; mov edx, imm32
93 _ThunkAttr DD ?
94 test dl, THUNK_ATTRIBUTE_DISABLE_A20_MASK_INT_15
95 jz @1
96 mov eax, 15cd2401h ; mov ax, 2401h & int 15h
97 cli ; disable interrupts
98 jnc @2
99 @1:
100 test dl, THUNK_ATTRIBUTE_DISABLE_A20_MASK_KBD_CTRL
101 jz @2
102 in al, 92h
103 or al, 2
104 out 92h, al ; deactivate A20M#
105 @2:
106 mov eax, ss
107 lea bp, [esp + sizeof (IA32_REGS)]
108 ;
109 ; rsi in the following 2 instructions is indeed bp in 16-bit code
110 ;
111 mov word ptr (IA32_REGS ptr [rsi - sizeof (IA32_REGS)])._ESP, bp
112 DB 66h
113 mov ebx, (IA32_REGS ptr [rsi - sizeof (IA32_REGS)])._EIP
114 shl ax, 4 ; shl eax, 4
115 add bp, ax ; add ebp, eax
116 mov ax, cs
117 shl ax, 4
118 lea ax, [eax + ebx + (@64BitCode - @Base)]
119 DB 66h, 2eh, 89h, 87h ; mov cs:[bx + (@64Eip - @Base)], eax
120 DW @64Eip - @Base
121 DB 66h, 0b8h ; mov eax, imm32
122 SavedCr4 DD ?
123 mov cr4, rax
124 ;
125 ; rdi in the instruction below is indeed bx in 16-bit code
126 ;
127 DB 66h, 2eh ; 2eh is "cs:" segment override
128 lgdt fword ptr [rdi + (SavedGdt - @Base)]
129 DB 66h
130 mov ecx, 0c0000080h
131 rdmsr
132 or ah, 1
133 wrmsr
134 DB 66h, 0b8h ; mov eax, imm32
135 SavedCr0 DD ?
136 mov cr0, rax
137 DB 66h, 0eah ; jmp far cs:@64Bit
138 @64Eip DD ?
139 SavedCs DW ?
140 @64BitCode:
141 mov rsp, r8 ; restore stack
142 ret
143 _BackFromUserCode ENDP
144
145 _EntryPoint DD _ToUserCode - m16Start
146 DW CODE16
147 _16Gdtr LABEL FWORD
148 DW GDT_SIZE - 1
149 _16GdtrBase DQ _NullSeg
150 _16Idtr FWORD (1 SHL 10) - 1
151
152 ;------------------------------------------------------------------------------
153 ; _ToUserCode() takes control in real mode before passing control to user code.
154 ; It will be shadowed to somewhere in memory below 1MB.
155 ;------------------------------------------------------------------------------
156 _ToUserCode PROC
157 mov ss, edx ; set new segment selectors
158 mov ds, edx
159 mov es, edx
160 mov fs, edx
161 mov gs, edx
162 DB 66h
163 mov ecx, 0c0000080h
164 mov cr0, rax ; real mode starts at next instruction
165 rdmsr
166 and ah, NOT 1
167 wrmsr
168 mov cr4, rbp
169 mov ss, esi ; set up 16-bit stack segment
170 mov sp, bx ; set up 16-bit stack pointer
171 DB 66h ; make the following call 32-bit
172 call @Base ; push eip
173 @Base:
174 pop bp ; ebp <- address of @Base
175 push [esp + sizeof (IA32_REGS) + 2]
176 lea eax, [rsi + (@RealMode - @Base)] ; rsi is "bp" in 16-bit code
177 push rax
178 retf ; execution begins at next instruction
179 @RealMode:
180 DB 66h, 2eh ; CS and operand size override
181 lidt fword ptr [rsi + (_16Idtr - @Base)]
182 DB 66h, 61h ; popad
183 DB 1fh ; pop ds
184 DB 07h ; pop es
185 pop fs
186 pop gs
187 popf ; popfd
188 lea sp, [esp + 4] ; skip high order 32 bits of EFlags
189 DB 66h ; make the following retf 32-bit
190 retf ; transfer control to user code
191 _ToUserCode ENDP
192
193 CODE16 = _16Code - $
194 DATA16 = _16Data - $
195 DATA32 = _32Data - $
196
197 _NullSeg DQ 0
198 _16Code LABEL QWORD
199 DW -1
200 DW 0
201 DB 0
202 DB 9bh
203 DB 8fh ; 16-bit segment, 4GB limit
204 DB 0
205 _16Data LABEL QWORD
206 DW -1
207 DW 0
208 DB 0
209 DB 93h
210 DB 8fh ; 16-bit segment, 4GB limit
211 DB 0
212 _32Data LABEL QWORD
213 DW -1
214 DW 0
215 DB 0
216 DB 93h
217 DB 0cfh ; 16-bit segment, 4GB limit
218 DB 0
219
220 GDT_SIZE = $ - _NullSeg
221
222 ;------------------------------------------------------------------------------
223 ; IA32_REGISTER_SET *
224 ; EFIAPI
225 ; InternalAsmThunk16 (
226 ; IN IA32_REGISTER_SET *RegisterSet,
227 ; IN OUT VOID *Transition
228 ; );
229 ;------------------------------------------------------------------------------
230 InternalAsmThunk16 PROC USES rbp rbx rsi rdi
231 mov r10d, ds ; r9 ~ r11 are not accessible in 16-bit
232 mov r11d, es ; so use them for saving seg registers
233 mov r9d, ss
234 push fs
235 push gs
236 mov rsi, rcx
237 movzx r8d, (IA32_REGS ptr [rsi])._SS
238 mov edi, (IA32_REGS ptr [rsi])._ESP
239 lea rdi, [edi - (sizeof (IA32_REGS) + 4)]
240 imul eax, r8d, 16 ; eax <- r8d(stack segment) * 16
241 mov ebx, edi ; ebx <- stack for 16-bit code
242 push sizeof (IA32_REGS) / 4
243 add edi, eax ; edi <- linear address of 16-bit stack
244 pop rcx
245 rep movsd ; copy RegSet
246 lea ecx, [rdx + (SavedCr4 - m16Start)]
247 mov eax, edx ; eax <- transition code address
248 and edx, 0fh
249 shl eax, 12 ; segment address in high order 16 bits
250 lea ax, [rdx + (_BackFromUserCode - m16Start)] ; offset address
251 stosd ; [edi] <- return address of user code
252 sgdt fword ptr [rcx + (SavedGdt - SavedCr4)]
253 sidt fword ptr [rsp + 38h] ; save IDT stack in argument space
254 mov rax, cr0
255 mov [rcx + (SavedCr0 - SavedCr4)], eax
256 and eax, 7ffffffeh ; clear PE, PG bits
257 mov rbp, cr4
258 mov [rcx], ebp ; save CR4 in SavedCr4
259 and ebp, 300h ; clear all but PCE and OSFXSR bits
260 mov esi, r8d ; esi <- 16-bit stack segment
261 DB 6ah, DATA32 ; push DATA32
262 pop rdx ; rdx <- 32-bit data segment selector
263 lgdt fword ptr [rcx + (_16Gdtr - SavedCr4)]
264 mov ss, edx
265 pushfq
266 lea edx, [rdx + DATA16 - DATA32]
267 lea r8, @RetFromRealMode
268 push r8
269 mov r8d, cs
270 mov [rcx + (SavedCs - SavedCr4)], r8w
271 mov r8, rsp
272 jmp fword ptr [rcx + (_EntryPoint - SavedCr4)]
273 @RetFromRealMode:
274 popfq
275 lidt fword ptr [rsp + 38h] ; restore protected mode IDTR
276 lea eax, [rbp - sizeof (IA32_REGS)]
277 pop gs
278 pop fs
279 mov ss, r9d
280 mov es, r11d
281 mov ds, r10d
282 ret
283 InternalAsmThunk16 ENDP
284
285 END