From: Heiher <r@hev.cc>
To: linux-mips@vger.kernel.org
Cc: Jiaxun Yang <jiaxun.yang@flygoat.com>,
Huacai Chen <chenhc@lemote.com>,
Paul Burton <paulburton@kernel.org>,
"Maciej W . Rozycki" <macro@linux-mips.org>, Heiher <r@hev.cc>
Subject: [PATCH] MIPS: Optional SYNC emulation
Date: Fri, 21 Aug 2020 11:12:28 +0800 [thread overview]
Message-ID: <20200821031228.31231-1-r@hev.cc> (raw)
MIPS ISA defines several types of memory barrier, of which Type-0 (full barrier)
is required, and the others are optional. In some vendor implementation (such as
Loongson), all optional parts are implemented to emit an illegal instruction
exception. Here, emulate to full barrier to ensure the functional semantics.
If an implementation does not support SYNC 0, it should also not support SMP, so
the `smp_mb()` is only a compilation barrier.
Signed-off-by: Heiher <r@hev.cc>
---
arch/mips/kernel/traps.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c
index 38aa07ccdbcc..d63e8671e9d2 100644
--- a/arch/mips/kernel/traps.c
+++ b/arch/mips/kernel/traps.c
@@ -501,6 +501,7 @@ asmlinkage void do_be(struct pt_regs *regs)
#define RD 0x0000f800
#define FUNC 0x0000003f
#define SYNC 0x0000000f
+#define STYPE 0x000007c0
#define RDHWR 0x0000003b
/* microMIPS definitions */
@@ -688,6 +689,8 @@ static int simulate_rdhwr_mm(struct pt_regs *regs, unsigned int opcode)
static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
{
if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC) {
+ if ((opcode & STYPE) != 0)
+ smp_mb();
perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
1, regs, 0);
return 0;
--
2.28.0
next reply other threads:[~2020-08-21 3:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-21 3:12 Heiher [this message]
2020-09-30 11:16 ` [PATCH] MIPS: Optional SYNC emulation Thomas Bogendoerfer
2020-10-01 7:45 ` Hev
2020-11-02 12:33 ` Maciej W. Rozycki
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-all 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=20200821031228.31231-1-r@hev.cc \
--to=r@hev.cc \
--cc=chenhc@lemote.com \
--cc=jiaxun.yang@flygoat.com \
--cc=linux-mips@vger.kernel.org \
--cc=macro@linux-mips.org \
--cc=paulburton@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).