Files
system76-edk2/MdePkg/Library/BaseLib/RiscV64/SwitchStack.S
王洋 0765ee6cd3 MdePkg/BaseLib: Fix boot DxeCore hang on riscv platform
For scene of
HandOffToDxeCore()->SwitchStack(DxeCoreEntryPoint)->
InternalSwitchStack()->LongJump(),Variable HobList.Raw
will be passed (from *Context1 to register a0) to
DxeMain() in parameter *HobStart.

However, meanwhile the function LongJump() overrides
register a0 with a1 (-1)  due to commit (ea628f28e5 "RISCV: Fix
InternalLongJump to return correct value"), then cause hang.

Replacing calling LongJump() with new InternalSwitchStackAsm() to pass
addres data in register s0 to register a0 could fix this issue (just
like the solution in MdePkg/Library/BaseLib/AArch64/SwitchStack.S)

Signed-off-by: Yang Wang <wangyang@bosc.ac.cn>
Cc: Bamvor Jian ZHANG <zhangjian@bosc.ac.cn>
Cc: Andrei Warkentin <andrei.warkentin@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Sunil V L <sunilvl@ventanamicro.com>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Ran Wang <wangran@bosc.ac.cn>
Reviewed-by: Andrei Warkentin <andrei.warkentin@intel.com>
2024-01-11 15:19:26 +00:00

38 lines
992 B
ArmAsm

//------------------------------------------------------------------------------
//
// InternalSwitchStackAsm for RISC-V
//
// Copyright (c) 2023, Bosc Corporation. All rights reserved.<BR>
//
// SPDX-License-Identifier: BSD-2-Clause-Patent
//
//------------------------------------------------------------------------------
.align 3
#/**
#
# This allows the caller to switch the stack and goes to the new entry point
#
# @param Context Parameter to pass in
# @param Context2 Parameter2 to pass in
# @param EntryPoint The pointer to the location to enter
# @param NewStack New Location of the stack
#
# @return Nothing. Goes to the Entry Point passing in the new parameters
#
#**/
#VOID
#EFIAPI
#InternalSwitchStackAsm (
# VOID *Context,
# VOID *Context2,
# SWITCH_STACK_ENTRY_POINT EntryPoint,
# VOID *NewStack
# );
#
.globl InternalSwitchStackAsm
InternalSwitchStackAsm:
mv ra, a2
mv sp, a3
ret