IntelFsp2Pkg: FspSecCore support for X64

REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3893
1.Added FspSecCore support for X64.
2.Bumped FSP header revision to 7 to indicate FSP 64bit is supported.
3.Corrected few typos.

Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Cc: Ashraf Ali S <ashraf.ali.s@intel.com>
Signed-off-by: Ted Kuo <ted.kuo@intel.com>
Reviewed-by: Chasel Chiu <chasel.chiu@intel.com>
Reviewed-by: Nate DeSimone <nathaniel.l.desimone@intel.com>
This commit is contained in:
Ted Kuo
2022-04-15 01:37:39 -07:00
committed by mergify[bot]
parent d40965b987
commit 00aa71ce20
18 changed files with 1493 additions and 19 deletions

View File

@@ -0,0 +1,73 @@
;------------------------------------------------------------------------------
;
; Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
; SPDX-License-Identifier: BSD-2-Clause-Patent
;
; Abstract:
;
; Switch the stack from temporary memory to permanent memory.
;
;------------------------------------------------------------------------------
SECTION .text
;------------------------------------------------------------------------------
; VOID
; EFIAPI
; SecSwitchStack (
; UINT64 TemporaryMemoryBase,
; UINT64 PermanentMemoryBase
; );
;------------------------------------------------------------------------------
global ASM_PFX(SecSwitchStack)
ASM_PFX(SecSwitchStack):
;
; Save four register: rax, rbx, rcx, rdx
;
push rax
push rbx
push rcx
push rdx
;
; !!CAUTION!! this function address's is pushed into stack after
; migration of whole temporary memory, so need save it to permanent
; memory at first!
;
mov rbx, rcx ; Save the first parameter
mov rcx, rdx ; Save the second parameter
;
; Save this function's return address into permanent memory at first.
; Then, Fixup the esp point to permanent memory
;
mov rax, rsp
sub rax, rbx
add rax, rcx
mov rdx, qword [rsp] ; copy pushed register's value to permanent memory
mov qword [rax], rdx
mov rdx, qword [rsp + 8]
mov qword [rax + 8], rdx
mov rdx, qword [rsp + 16]
mov qword [rax + 16], rdx
mov rdx, qword [rsp + 24]
mov qword [rax + 24], rdx
mov rdx, qword [rsp + 32] ; Update this function's return address into permanent memory
mov qword [rax + 32], rdx
mov rsp, rax ; From now, rsp is pointed to permanent memory
;
; Fixup the rbp point to permanent memory
;
mov rax, rbp
sub rax, rbx
add rax, rcx
mov rbp, rax ; From now, rbp is pointed to permanent memory
pop rdx
pop rcx
pop rbx
pop rax
ret