mirror of https://github.com/acidanthera/audk.git
IntelFsp2WrapperPkg: FSP_TEMP_RAM_INIT call for X64 Calling Convention
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3926 Pass Input parameters using RCX. 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: cbduggap <chinni.b.duggapu@intel.com> Reviewed-by: Chasel Chiu <chasel.chiu@intel.com> Reviewed-by: Ted Kuo <ted.kuo@intel.com>
This commit is contained in:
parent
11d8abcba2
commit
df1c7e91b4
|
@ -130,6 +130,9 @@ FspHeaderFound:
|
|||
mov eax, dword [edi + FSP_HEADER_IMAGEBASE_OFFSET]
|
||||
add eax, dword [edi + FSP_HEADER_TEMPRAMINIT_OFFSET]
|
||||
|
||||
; Pass Fsp T Upd pointer as Input parameter
|
||||
mov rcx, ASM_PFX(FsptUpdDataPtr)
|
||||
|
||||
; Setup the hardcode stack
|
||||
mov rsp, TempRamInitStack
|
||||
|
||||
|
@ -167,5 +170,4 @@ FspApiFailed:
|
|||
align 10h
|
||||
TempRamInitStack:
|
||||
DQ TempRamInitDone
|
||||
DQ ASM_PFX(FsptUpdDataPtr) ; TempRamInitParams
|
||||
|
||||
|
|
Loading…
Reference in New Issue