[PATCH v4 2/2] IntelFsp2WrapperPkg: FSP_TEMP_RAM_INIT call must follow X64 Calling Convention
cbduggap
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D3926
Pass Input parameters using RCX. Cc: Chasel Chiu <chasel.chiu@...> Cc: Nate DeSimone <nathaniel.l.desimone@...> Cc: Star Zeng <star.zeng@...> Cc: Ashraf Ali S <ashraf.ali.s@...> Signed-off-by: cbduggap <chinni.b.duggapu@...> --- .../SecFspWrapperPlatformSecLibSample/X64/SecEntry.nasm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/= X64/SecEntry.nasm b/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLib= Sample/X64/SecEntry.nasm index dbbf63336e..065d80d0e2 100644 --- a/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/X64/Sec= Entry.nasm +++ b/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/X64/Sec= Entry.nasm @@ -130,6 +130,9 @@ FspHeaderFound: mov eax, dword [edi + FSP_HEADER_IMAGEBASE_OFFSET]=0D add eax, dword [edi + FSP_HEADER_TEMPRAMINIT_OFFSET]=0D =0D + ; Pass Fsp T Udp pointer as Input parameter=0D + mov rcx, ASM_PFX(FsptUpdDataPtr)=0D +=0D ; Setup the hardcode stack=0D mov rsp, TempRamInitStack=0D =0D @@ -167,5 +170,4 @@ FspApiFailed: align 10h=0D TempRamInitStack:=0D DQ TempRamInitDone=0D - DQ ASM_PFX(FsptUpdDataPtr) ; TempRamInitParams=0D =0D --=20 2.36.0.windows.1 |
|