mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-22 05:04:24 +02:00
Fix the issue to clear the high 16-bit of EAX before use it Thunk code.
This patch updates MdePkg BaseLib, EcpPkg EdkIIGlueLib BaseLib and ThunkLib. Signed-off-by: lgao4 Reviewed-by: rsun3 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12877 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
c577049aaf
commit
0249feb8b5
@ -1,6 +1,6 @@
|
|||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
# which accompanies this distribution. The full text of the license may be found at
|
# which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -55,7 +55,8 @@ ASM_PFX(ThunkAttr): .space 4
|
|||||||
orb $2, %al
|
orb $2, %al
|
||||||
outb %al, $0x92 # deactivate A20M#
|
outb %al, $0x92 # deactivate A20M#
|
||||||
2:
|
2:
|
||||||
movw %ss, %ax
|
xorw %ax, %ax # xor eax, eax
|
||||||
|
movl %ss, %eax # mov ax, ss
|
||||||
.byte 0x67, 0x66, 0x8d, 0x6c, 0x24, 0x34, 0x66
|
.byte 0x67, 0x66, 0x8d, 0x6c, 0x24, 0x34, 0x66
|
||||||
mov %ebp, 0xffffffd8(%esi)
|
mov %ebp, 0xffffffd8(%esi)
|
||||||
mov 0xfffffff8(%esi), %ebx
|
mov 0xfffffff8(%esi), %ebx
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
; Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
; This program and the accompanying materials
|
; This program and the accompanying materials
|
||||||
; are licensed and made available under the terms and conditions of the BSD License
|
; are licensed and made available under the terms and conditions of the BSD License
|
||||||
; which accompanies this distribution. The full text of the license may be found at
|
; which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -108,7 +108,8 @@ _ThunkAttr DD ?
|
|||||||
or al, 2
|
or al, 2
|
||||||
out 92h, al ; deactivate A20M#
|
out 92h, al ; deactivate A20M#
|
||||||
@2:
|
@2:
|
||||||
mov ax, ss
|
xor ax, ax ; xor eax, eax
|
||||||
|
mov eax, ss ; mov ax, ss
|
||||||
DB 67h
|
DB 67h
|
||||||
lea bp, [esp + sizeof (IA32_REGS)]
|
lea bp, [esp + sizeof (IA32_REGS)]
|
||||||
;
|
;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
# Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
# This program and the accompanying materials
|
# This program and the accompanying materials
|
||||||
# are licensed and made available under the terms and conditions of the BSD License
|
# are licensed and made available under the terms and conditions of the BSD License
|
||||||
# which accompanies this distribution. The full text of the license may be found at
|
# which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -109,7 +109,8 @@ L_1:
|
|||||||
orb $2,%al
|
orb $2,%al
|
||||||
outb %al, $0x92 # deactivate A20M#
|
outb %al, $0x92 # deactivate A20M#
|
||||||
L_2:
|
L_2:
|
||||||
movw %ss,%ax
|
xorw %ax,%ax # xor eax, eax
|
||||||
|
movl %ss,%eax # mov ax, ss
|
||||||
lea IA32_REGS_SIZE(%esp), %bp
|
lea IA32_REGS_SIZE(%esp), %bp
|
||||||
#
|
#
|
||||||
# rsi in the following 2 instructions is indeed bp in 16-bit code
|
# rsi in the following 2 instructions is indeed bp in 16-bit code
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
; Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
; Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
; This program and the accompanying materials
|
; This program and the accompanying materials
|
||||||
; are licensed and made available under the terms and conditions of the BSD License
|
; are licensed and made available under the terms and conditions of the BSD License
|
||||||
; which accompanies this distribution. The full text of the license may be found at
|
; which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -103,7 +103,8 @@ _ThunkAttr DD ?
|
|||||||
or al, 2
|
or al, 2
|
||||||
out 92h, al ; deactivate A20M#
|
out 92h, al ; deactivate A20M#
|
||||||
@2:
|
@2:
|
||||||
mov ax, ss
|
xor ax, ax ; xor eax, eax
|
||||||
|
mov eax, ss ; mov ax, ss
|
||||||
lea bp, [esp + sizeof (IA32_REGS)]
|
lea bp, [esp + sizeof (IA32_REGS)]
|
||||||
;
|
;
|
||||||
; rsi in the following 2 instructions is indeed bp in 16-bit code
|
; rsi in the following 2 instructions is indeed bp in 16-bit code
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#*****************************************************************************
|
#*****************************************************************************
|
||||||
#*
|
#*
|
||||||
#* Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
#* Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
#* This program and the accompanying materials
|
#* This program and the accompanying materials
|
||||||
#* are licensed and made available under the terms and conditions of the BSD License
|
#* are licensed and made available under the terms and conditions of the BSD License
|
||||||
#* which accompanies this distribution. The full text of the license may be found at
|
#* which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -116,7 +116,8 @@ L_16Bit:
|
|||||||
.byte 0xfc
|
.byte 0xfc
|
||||||
|
|
||||||
L_Lable1:
|
L_Lable1:
|
||||||
movl %ss,%eax
|
xor %eax,%eax
|
||||||
|
movw %ss,%ax
|
||||||
shl $0x4,%eax
|
shl $0x4,%eax
|
||||||
add %esp,%eax
|
add %esp,%eax
|
||||||
lss 0x3c(%esp),%esp
|
lss 0x3c(%esp),%esp
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
;*****************************************************************************
|
;*****************************************************************************
|
||||||
;*
|
;*
|
||||||
;* Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
;* Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
;* This program and the accompanying materials
|
;* This program and the accompanying materials
|
||||||
;* are licensed and made available under the terms and conditions of the BSD License
|
;* are licensed and made available under the terms and conditions of the BSD License
|
||||||
;* which accompanies this distribution. The full text of the license may be found at
|
;* which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -141,7 +141,8 @@ __Thunk16 PROC USES ebp ebx esi edi ds es fs gs
|
|||||||
mov cr4, eax ; disable PAE & PSE
|
mov cr4, eax ; disable PAE & PSE
|
||||||
db 67h, 0FFh, 06Ch, 024h, 0FCh ; jmp dword ptr [esp-4]
|
db 67h, 0FFh, 06Ch, 024h, 0FCh ; jmp dword ptr [esp-4]
|
||||||
@@:
|
@@:
|
||||||
mov eax, ss
|
xor eax, eax
|
||||||
|
mov ax, ss
|
||||||
shl eax, 4
|
shl eax, 4
|
||||||
add eax, esp ; eax <- address of 16-bit stack
|
add eax, esp ; eax <- address of 16-bit stack
|
||||||
lss esp, fword ptr (_STK16 ptr [esp + sizeof (IA32_REGS)]).SavedEsp
|
lss esp, fword ptr (_STK16 ptr [esp + sizeof (IA32_REGS)]).SavedEsp
|
||||||
|
@ -148,7 +148,7 @@ Label_16Bit:
|
|||||||
|
|
||||||
Label:
|
Label:
|
||||||
xor %rax,%rax
|
xor %rax,%rax
|
||||||
movl %ss,%eax
|
movw %ss,%ax
|
||||||
shl $0x4,%eax
|
shl $0x4,%eax
|
||||||
add %esp,%eax
|
add %esp,%eax
|
||||||
mov %r15,%rsp
|
mov %r15,%rsp
|
||||||
|
@ -144,7 +144,7 @@ _Thunk16 PROC USES rbp rbx rsi rdi r12 r13 r14 r15
|
|||||||
retf
|
retf
|
||||||
@@:
|
@@:
|
||||||
xor rax, rax
|
xor rax, rax
|
||||||
mov eax, ss
|
mov ax, ss
|
||||||
shl eax, 4
|
shl eax, 4
|
||||||
add eax, esp ; rax <- address of 16-bit stack
|
add eax, esp ; rax <- address of 16-bit stack
|
||||||
mov rsp, r15
|
mov rsp, r15
|
||||||
|
Loading…
x
Reference in New Issue
Block a user