From: James Raphael Tiovalen <jamestiotio@gmail.com>
To: kvm@vger.kernel.org, kvm-riscv@lists.infradead.org
Cc: andrew.jones@linux.dev, atishp@rivosinc.com,
cade.richard@berkeley.edu,
James Raphael Tiovalen <jamestiotio@gmail.com>
Subject: [kvm-unit-tests PATCH 1/3] riscv: sbi: Add IPI extension support
Date: Sun, 11 Aug 2024 01:57:42 +0800 [thread overview]
Message-ID: <20240810175744.166503-2-jamestiotio@gmail.com> (raw)
In-Reply-To: <20240810175744.166503-1-jamestiotio@gmail.com>
Add IPI EID and FID constants and a helper function to perform the IPI
SBI ecall.
Signed-off-by: James Raphael Tiovalen <jamestiotio@gmail.com>
---
lib/riscv/asm/sbi.h | 5 +++++
riscv/sbi.c | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/lib/riscv/asm/sbi.h b/lib/riscv/asm/sbi.h
index 73ab5438..6b485dd3 100644
--- a/lib/riscv/asm/sbi.h
+++ b/lib/riscv/asm/sbi.h
@@ -17,6 +17,7 @@
enum sbi_ext_id {
SBI_EXT_BASE = 0x10,
SBI_EXT_TIME = 0x54494d45,
+ SBI_EXT_IPI = 0x735049,
SBI_EXT_HSM = 0x48534d,
SBI_EXT_SRST = 0x53525354,
};
@@ -42,6 +43,10 @@ enum sbi_ext_time_fid {
SBI_EXT_TIME_SET_TIMER = 0,
};
+enum sbi_ext_ipi_fid {
+ SBI_EXT_IPI_SEND_IPI = 0,
+};
+
struct sbiret {
long error;
long value;
diff --git a/riscv/sbi.c b/riscv/sbi.c
index 2438c497..08bd6a95 100644
--- a/riscv/sbi.c
+++ b/riscv/sbi.c
@@ -32,6 +32,11 @@ static struct sbiret __time_sbi_ecall(unsigned long stime_value)
return sbi_ecall(SBI_EXT_TIME, SBI_EXT_TIME_SET_TIMER, stime_value, 0, 0, 0, 0, 0);
}
+static struct sbiret __ipi_sbi_ecall(unsigned long hart_mask, unsigned long hart_mask_base)
+{
+ return sbi_ecall(SBI_EXT_IPI, SBI_EXT_IPI_SEND_IPI, hart_mask, hart_mask_base, 0, 0, 0, 0);
+}
+
static bool env_or_skip(const char *env)
{
if (!getenv(env)) {
--
2.43.0
next prev parent reply other threads:[~2024-08-10 17:57 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-10 17:57 [kvm-unit-tests PATCH 0/3] riscv: sbi: Add support to test HSM extension James Raphael Tiovalen
2024-08-10 17:57 ` James Raphael Tiovalen [this message]
2024-08-12 10:55 ` [kvm-unit-tests PATCH 1/3] riscv: sbi: Add IPI extension support Andrew Jones
2024-08-10 17:57 ` [kvm-unit-tests PATCH 2/3] riscv: sbi: Add HSM extension functions James Raphael Tiovalen
2024-08-12 10:58 ` Andrew Jones
2024-08-10 17:57 ` [kvm-unit-tests PATCH 3/3] riscv: sbi: Add tests for HSM extension James Raphael Tiovalen
2024-08-12 12:45 ` Andrew Jones
2024-08-12 14:21 ` [kvm-unit-tests PATCH 0/3] riscv: sbi: Add support to test " Andrew Jones
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=20240810175744.166503-2-jamestiotio@gmail.com \
--to=jamestiotio@gmail.com \
--cc=andrew.jones@linux.dev \
--cc=atishp@rivosinc.com \
--cc=cade.richard@berkeley.edu \
--cc=kvm-riscv@lists.infradead.org \
--cc=kvm@vger.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