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 v3 3/5] riscv: Add method to probe for SBI extensions
Date: Fri, 19 Jul 2024 10:39:45 +0800 [thread overview]
Message-ID: <20240719023947.112609-4-jamestiotio@gmail.com> (raw)
In-Reply-To: <20240719023947.112609-1-jamestiotio@gmail.com>
Add a `sbi_probe` helper method that can be used by SBI extension tests
to check if a given extension is available.
Signed-off-by: James Raphael Tiovalen <jamestiotio@gmail.com>
---
lib/riscv/asm/sbi.h | 1 +
lib/riscv/sbi.c | 10 ++++++++++
2 files changed, 11 insertions(+)
diff --git a/lib/riscv/asm/sbi.h b/lib/riscv/asm/sbi.h
index d82a384d..5e1a674a 100644
--- a/lib/riscv/asm/sbi.h
+++ b/lib/riscv/asm/sbi.h
@@ -49,6 +49,7 @@ struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
void sbi_shutdown(void);
struct sbiret sbi_hart_start(unsigned long hartid, unsigned long entry, unsigned long sp);
+long sbi_probe(int ext);
#endif /* !__ASSEMBLY__ */
#endif /* _ASMRISCV_SBI_H_ */
diff --git a/lib/riscv/sbi.c b/lib/riscv/sbi.c
index f39134c4..7d7d09c3 100644
--- a/lib/riscv/sbi.c
+++ b/lib/riscv/sbi.c
@@ -38,3 +38,13 @@ struct sbiret sbi_hart_start(unsigned long hartid, unsigned long entry, unsigned
{
return sbi_ecall(SBI_EXT_HSM, SBI_EXT_HSM_HART_START, hartid, entry, sp, 0, 0, 0);
}
+
+long sbi_probe(int ext)
+{
+ struct sbiret ret;
+
+ ret = sbi_ecall(SBI_EXT_BASE, SBI_EXT_BASE_PROBE_EXT, ext, 0, 0, 0, 0, 0);
+ assert(!ret.error);
+
+ return ret.value;
+}
--
2.43.0
next prev parent reply other threads:[~2024-07-19 2:40 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-19 2:39 [kvm-unit-tests PATCH v3 0/5] riscv: sbi: Add support to test timer extension James Raphael Tiovalen
2024-07-19 2:39 ` [kvm-unit-tests PATCH v3 1/5] riscv: Extend exception handling support for interrupts James Raphael Tiovalen
2024-07-19 2:39 ` [kvm-unit-tests PATCH v3 2/5] riscv: Update exception cause list James Raphael Tiovalen
2024-07-19 2:39 ` James Raphael Tiovalen [this message]
2024-07-19 15:45 ` [kvm-unit-tests PATCH v3 3/5] riscv: Add method to probe for SBI extensions Andrew Jones
2024-07-19 2:39 ` [kvm-unit-tests PATCH v3 4/5] riscv: Add some delay and timer routines James Raphael Tiovalen
2024-07-19 16:01 ` Andrew Jones
2024-07-19 2:39 ` [kvm-unit-tests PATCH v3 5/5] riscv: sbi: Add test for timer extension James Raphael Tiovalen
2024-07-19 16:31 ` 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=20240719023947.112609-4-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