MdePkg/BaseLib: BaseLib for LOONGARCH64 architecture.
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4053 Add LoongArch LOONGARCH64 BaseLib functions. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Chao Li <lichao@loongson.cn> Co-authored-by: Baoqi Zhang <zhangbaoqi@loongson.cn> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
This commit is contained in:
28
MdePkg/Library/BaseLib/LoongArch64/Barrier.S
Normal file
28
MdePkg/Library/BaseLib/LoongArch64/Barrier.S
Normal file
@@ -0,0 +1,28 @@
|
||||
#------------------------------------------------------------------------------
|
||||
#
|
||||
# LoongArch Barrier Operations
|
||||
#
|
||||
# Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
|
||||
ASM_GLOBAL ASM_PFX(AsmDataBarrierLoongArch)
|
||||
ASM_GLOBAL ASM_PFX(AsmInstructionBarrierLoongArch)
|
||||
|
||||
#
|
||||
# Data barrier operation for LoongArch.
|
||||
#
|
||||
ASM_PFX(AsmDataBarrierLoongArch):
|
||||
dbar 0
|
||||
jirl $zero, $ra, 0
|
||||
|
||||
#
|
||||
# Instruction barrier operation for LoongArch.
|
||||
#
|
||||
ASM_PFX(AsmInstructionBarrierLoongArch):
|
||||
ibar 0
|
||||
jirl $zero, $ra, 0
|
||||
|
||||
.end
|
Reference in New Issue
Block a user