Files
system76-edk2/MdePkg/Library/BaseLib/LoongArch64/DisableInterrupts.S
Chao Li cd24eb578b 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>
2022-10-14 02:16:33 +00:00

22 lines
537 B
ArmAsm

#------------------------------------------------------------------------------
#
# LoongArch interrupt disable
#
# Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
#------------------------------------------------------------------------------
ASM_GLOBAL ASM_PFX(DisableInterrupts)
#/**
# Disables CPU interrupts.
#**/
ASM_PFX(DisableInterrupts):
li.w $t0, 0x4
csrxchg $zero, $t0, 0x0
jirl $zero, $ra, 0
.end