summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/LoongArch64/GetInterruptState.S
blob: bfd1f2d5f770c4b31ebb7c665e16ae014cf1da61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#------------------------------------------------------------------------------
#
# Get LoongArch interrupt status
#
# Copyright (c) 2022, Loongson Technology Corporation Limited. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
#------------------------------------------------------------------------------

ASM_GLOBAL ASM_PFX(GetInterruptState)

#/**
#  Retrieves the current CPU interrupt state.
#
#  Returns TRUE means interrupts are currently enabled. Otherwise,
#  returns FALSE.
#
#  @retval TRUE  CPU interrupts are enabled.
#  @retval FALSE CPU interrupts are disabled.
#
#**/

ASM_PFX(GetInterruptState):
  li.w  $t1, 0x4
  csrrd $t0, 0x0
  and   $t0, $t0, $t1
  beqz  $t0, 1f
  li.w  $a0, 0x1
  b     2f
1:
  li.w  $a0, 0x0
2:
  jirl  $zero, $ra, 0
  .end