public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zhiguang Liu" <zhiguang.liu@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"abner.chang@hpe.com" <abner.chang@hpe.com>
Cc: Gilbert Chen <gilbert.chen@hpe.com>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	"Kinney, Michael D" <michael.d.kinney@intel.com>,
	"Gao, Liming" <liming.gao@intel.com>
Subject: Re: [edk2-devel] [PATCH v2 8/9] MdePkg/BaseSynchronizationLib: RISC-V cache related code.
Date: Wed, 22 Apr 2020 09:03:47 +0000	[thread overview]
Message-ID: <BN7PR11MB2804BF83430C8330BB89EF6490D20@BN7PR11MB2804.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20200421075317.26008-1-abner.chang@hpe.com>

Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>

-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Abner Chang
Sent: Tuesday, April 21, 2020 3:53 PM
To: devel@edk2.groups.io
Cc: abner.chang@hpe.com; Gilbert Chen <gilbert.chen@hpe.com>; Leif Lindholm <leif.lindholm@linaro.org>; Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <liming.gao@intel.com>
Subject: [edk2-devel] [PATCH v2 8/9] MdePkg/BaseSynchronizationLib: RISC-V cache related code.

Support RISC-V cache related functions.

Signed-off-by: Abner Chang <abner.chang@hpe.com>
Co-authored-by: Gilbert Chen <gilbert.chen@hpe.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Gilbert Chen <gilbert.chen@hpe.com>
---
 .../BaseSynchronizationLib.inf                |  5 ++
 .../RiscV64/Synchronization.S                 | 78 +++++++++++++++++++
 2 files changed, 83 insertions(+)
 create mode 100644 MdePkg/Library/BaseSynchronizationLib/RiscV64/Synchronization.S

diff --git a/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf b/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
index 446bc19b63..83d5b8ed7c 100755
--- a/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
+++ b/MdePkg/Library/BaseSynchronizationLib/BaseSynchronizationLib.inf
@@ -3,6 +3,7 @@
 #

 #  Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>

 #  Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>

+#  Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>

 #

 #  SPDX-License-Identifier: BSD-2-Clause-Patent

 #

@@ -78,6 +79,10 @@
   AArch64/Synchronization.S     | GCC

   AArch64/Synchronization.asm   | MSFT

 

+[Sources.RISCV64]

+  Synchronization.c

+  RiscV64/Synchronization.S

+

 [Packages]

   MdePkg/MdePkg.dec

 

diff --git a/MdePkg/Library/BaseSynchronizationLib/RiscV64/Synchronization.S b/MdePkg/Library/BaseSynchronizationLib/RiscV64/Synchronization.S
new file mode 100644
index 0000000000..bac80d6871
--- /dev/null
+++ b/MdePkg/Library/BaseSynchronizationLib/RiscV64/Synchronization.S
@@ -0,0 +1,78 @@
+//------------------------------------------------------------------------------

+//

+// RISC-V synchronization functions.

+//

+// Copyright (c) 2020, Hewlett Packard Enterprise Development LP. All rights reserved.<BR>

+//

+// SPDX-License-Identifier: BSD-2-Clause-Patent

+//

+//------------------------------------------------------------------------------

+#include <Base.h>

+

+.data

+

+.text

+.align 3

+

+.global ASM_PFX(InternalSyncCompareExchange32)

+.global ASM_PFX(InternalSyncCompareExchange64)

+.global ASM_PFX(InternalSyncIncrement)

+.global ASM_PFX(InternalSyncDecrement)

+

+//

+// ompare and xchange a 32-bit value.

+//

+// @param a0 : Pointer to 32-bit value.

+// @param a1 : Compare value.

+// @param a2 : Exchange value.

+//

+ASM_PFX (InternalSyncCompareExchange32):

+    lr.w  a3, (a0)        // Load the value from a0 and make

+                          // the reservation of address.

+    bne   a3, a1, exit

+    sc.w  a3, a2, (a0)    // Write the value back to the address.

+    mv    a3, a1

+exit:

+    mv    a0, a3

+    ret

+

+.global ASM_PFX(InternalSyncCompareExchange64)

+

+//

+// Compare and xchange a 64-bit value.

+//

+// @param a0 : Pointer to 64-bit value.

+// @param a1 : Compare value.

+// @param a2 : Exchange value.

+//

+ASM_PFX (SyncCompareExchange64):

+    lr.d  a3, (a0)       // Load the value from a0 and make

+                         // the reservation of address.

+    bne   a3, a1, exit

+    sc.d  a3, a2, (a0)   // Write the value back to the address.

+    mv    a3, a1

+exit2:

+    mv    a0, a3

+    ret

+

+//

+// Performs an atomic increment of an 32-bit unsigned integer.

+//

+// @param a0 : Pointer to 32-bit value.

+//

+ASM_PFX (InternalSyncIncrement):

+    li  a1, 1

+    amoadd.w  a2, a1, (a0)

+    mv  a0, a2

+    ret

+

+//

+// Performs an atomic decrement of an 32-bit unsigned integer.

+//

+// @param a0 : Pointer to 32-bit value.

+//

+ASM_PFX (InternalSyncDecrement):

+    li  a1, -1

+    amoadd.w  a2, a1, (a0)

+    mv  a0, a2

+    ret

-- 
2.25.0


-=-=-=-=-=-=
Groups.io Links: You receive all messages sent to this group.

View/Reply Online (#57720): https://edk2.groups.io/g/devel/message/57720
Mute This Topic: https://groups.io/mt/73168213/1779286
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub  [zhiguang.liu@intel.com]
-=-=-=-=-=-=


  parent reply	other threads:[~2020-04-22  9:03 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-21  7:53 [PATCH v2 8/9] MdePkg/BaseSynchronizationLib: RISC-V cache related code Abner Chang
2020-04-21  8:53 ` [edk2-devel] " Zhiguang Liu
2020-04-22  9:03 ` Zhiguang Liu [this message]
     [not found] <1607C88B87B941AC.8676@groups.io>
2020-04-22  9:15 ` Liming Gao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=BN7PR11MB2804BF83430C8330BB89EF6490D20@BN7PR11MB2804.namprd11.prod.outlook.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox