IntelFsp2Pkg/FspSecCore: Add FSP-I API for SMM support.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3993 Add FSP-I API entry point for SMM support. Also update 64bit API entry code to assign ApiIdx to RAX to avoid confusion. Cc: Nate DeSimone <nathaniel.l.desimone@intel.com> Cc: Star Zeng <star.zeng@intel.com> Signed-off-by: Chasel Chiu <chasel.chiu@intel.com> Signed-off-by: Hongbin1 Zhang <hongbin1.zhang@intel.com> Reviewed-by: Nate DeSimone <nathaniel.l.desimone@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
24eac4caf3
commit
4824924377
@@ -24,7 +24,7 @@ STACK_SAVED_RAX_OFFSET EQU 8 * 7 ; size of a general purpose register *
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(NotifyPhaseApi)
|
||||
ASM_PFX(NotifyPhaseApi):
|
||||
mov eax, 2 ; FSP_API_INDEX.NotifyPhaseApiIndex
|
||||
mov rax, 2 ; FSP_API_INDEX.NotifyPhaseApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@@ -36,7 +36,7 @@ ASM_PFX(NotifyPhaseApi):
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(FspSiliconInitApi)
|
||||
ASM_PFX(FspSiliconInitApi):
|
||||
mov eax, 5 ; FSP_API_INDEX.FspSiliconInitApiIndex
|
||||
mov rax, 5 ; FSP_API_INDEX.FspSiliconInitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@@ -54,7 +54,7 @@ ASM_PFX(FspSiliconInitApi):
|
||||
|
||||
global ASM_PFX(FspMultiPhaseSiInitApi)
|
||||
ASM_PFX(FspMultiPhaseSiInitApi):
|
||||
mov eax, 6 ; FSP_API_INDEX.FspMultiPhaseSiInitApiIndex
|
||||
mov rax, 6 ; FSP_API_INDEX.FspMultiPhaseSiInitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@@ -68,7 +68,7 @@ ASM_PFX(FspApiCommonContinue):
|
||||
;
|
||||
; Handle FspMultiPhaseSiInitApiIndex API
|
||||
;
|
||||
cmp eax, 6
|
||||
cmp rax, 6 ; FSP_API_INDEX.FspMultiPhaseSiInitApiIndex
|
||||
jnz NotMultiPhaseSiInitApi
|
||||
|
||||
PUSHA_64
|
||||
|
44
IntelFsp2Pkg/FspSecCore/X64/FspApiEntryI.nasm
Normal file
44
IntelFsp2Pkg/FspSecCore/X64/FspApiEntryI.nasm
Normal file
@@ -0,0 +1,44 @@
|
||||
;; @file
|
||||
; Provide FSP API entry points.
|
||||
;
|
||||
; Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>
|
||||
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
;;
|
||||
|
||||
SECTION .text
|
||||
|
||||
;
|
||||
; Following functions will be provided in C
|
||||
;
|
||||
extern ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
; FspApiCommonContinue API
|
||||
;
|
||||
; This is the FSP API common entry point to resume the FSP execution
|
||||
;
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(FspApiCommonContinue)
|
||||
ASM_PFX(FspApiCommonContinue):
|
||||
jmp $
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
; FspSmmInit API
|
||||
;
|
||||
; This FSP API will notify the FSP about the different phases in the boot
|
||||
; process
|
||||
;
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(FspSmmInitApi)
|
||||
ASM_PFX(FspSmmInitApi):
|
||||
mov rax, 7 ; FSP_API_INDEX.FspSmmInitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
; Module Entrypoint API
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(_ModuleEntryPoint)
|
||||
ASM_PFX(_ModuleEntryPoint):
|
||||
jmp $
|
||||
; Add reference to APIs so that it will not be optimized by compiler
|
||||
jmp ASM_PFX(FspSmmInitApi)
|
@@ -55,7 +55,7 @@ FSP_HEADER_CFGREG_OFFSET EQU 24h
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(FspMemoryInitApi)
|
||||
ASM_PFX(FspMemoryInitApi):
|
||||
mov eax, 3 ; FSP_API_INDEX.FspMemoryInitApiIndex
|
||||
mov rax, 3 ; FSP_API_INDEX.FspMemoryInitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@@ -66,7 +66,7 @@ ASM_PFX(FspMemoryInitApi):
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(TempRamExitApi)
|
||||
ASM_PFX(TempRamExitApi):
|
||||
mov eax, 4 ; FSP_API_INDEX.TempRamExitApiIndex
|
||||
mov rax, 4 ; FSP_API_INDEX.TempRamExitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
|
@@ -21,7 +21,7 @@ extern ASM_PFX(FspApiCommon)
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(NotifyPhaseApi)
|
||||
ASM_PFX(NotifyPhaseApi):
|
||||
mov eax, 2 ; FSP_API_INDEX.NotifyPhaseApiIndex
|
||||
mov rax, 2 ; FSP_API_INDEX.NotifyPhaseApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@@ -33,7 +33,7 @@ ASM_PFX(NotifyPhaseApi):
|
||||
;----------------------------------------------------------------------------
|
||||
global ASM_PFX(FspSiliconInitApi)
|
||||
ASM_PFX(FspSiliconInitApi):
|
||||
mov eax, 5 ; FSP_API_INDEX.FspSiliconInitApiIndex
|
||||
mov rax, 5 ; FSP_API_INDEX.FspSiliconInitApiIndex
|
||||
jmp ASM_PFX(FspApiCommon)
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user