From: Andrew Jones <andrew.jones@linux.dev>
To: James Raphael Tiovalen <jamestiotio@gmail.com>
Cc: kvm@vger.kernel.org, kvm-riscv@lists.infradead.org,
atishp@rivosinc.com, cade.richard@berkeley.edu
Subject: Re: [kvm-unit-tests PATCH v3 1/2] riscv: sbi: Add HSM extension functions
Date: Thu, 12 Sep 2024 16:06:02 +0200 [thread overview]
Message-ID: <20240912-f404e2ed36d3a09b123a4f6e@orel> (raw)
In-Reply-To: <20240911-595775a85e53a6fd92bdf707@orel>
On Wed, Sep 11, 2024 at 05:45:57PM GMT, Andrew Jones wrote:
> On Tue, Sep 10, 2024 at 11:15:35PM GMT, James Raphael Tiovalen wrote:
> > Add helper functions to perform hart-related operations to prepare for
> > the HSM tests. Also add the HSM state IDs and default suspend type
> > constants.
> >
> > Reviewed-by: Andrew Jones <andrew.jones@linux.dev>
> > Signed-off-by: James Raphael Tiovalen <jamestiotio@gmail.com>
> > ---
> > lib/riscv/asm/sbi.h | 17 +++++++++++++++++
> > lib/riscv/sbi.c | 10 ++++++++++
> > riscv/sbi.c | 5 +++++
> > 3 files changed, 32 insertions(+)
> >
> > diff --git a/lib/riscv/asm/sbi.h b/lib/riscv/asm/sbi.h
> > index e032444d..1319439b 100644
> > --- a/lib/riscv/asm/sbi.h
> > +++ b/lib/riscv/asm/sbi.h
> > @@ -49,6 +49,21 @@ enum sbi_ext_ipi_fid {
> > SBI_EXT_IPI_SEND_IPI = 0,
> > };
> >
> > +enum sbi_ext_hsm_sid {
> > + SBI_EXT_HSM_STARTED = 0,
> > + SBI_EXT_HSM_STOPPED,
> > + SBI_EXT_HSM_START_PENDING,
> > + SBI_EXT_HSM_STOP_PENDING,
> > + SBI_EXT_HSM_SUSPENDED,
> > + SBI_EXT_HSM_SUSPEND_PENDING,
> > + SBI_EXT_HSM_RESUME_PENDING,
> > +};
> > +
> > +enum sbi_ext_hsm_hart_suspend_type {
> > + SBI_EXT_HSM_HART_SUSPEND_RETENTIVE = 0,
> > + SBI_EXT_HSM_HART_SUSPEND_NON_RETENTIVE = 0x80000000,
> > +};
> > +
> > enum sbi_ext_dbcn_fid {
> > SBI_EXT_DBCN_CONSOLE_WRITE = 0,
> > SBI_EXT_DBCN_CONSOLE_READ,
> > @@ -67,6 +82,8 @@ 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);
> > +struct sbiret sbi_hart_stop(void);
> > +struct sbiret sbi_hart_get_status(unsigned long hartid);
> > struct sbiret sbi_send_ipi(unsigned long hart_mask, unsigned long hart_mask_base);
> > struct sbiret sbi_send_ipi_cpu(int cpu);
> > struct sbiret sbi_send_ipi_cpumask(const cpumask_t *mask);
> > diff --git a/lib/riscv/sbi.c b/lib/riscv/sbi.c
> > index ecc63acd..8972e765 100644
> > --- a/lib/riscv/sbi.c
> > +++ b/lib/riscv/sbi.c
> > @@ -42,6 +42,16 @@ 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);
> > }
> >
> > +struct sbiret sbi_hart_stop(void)
> > +{
> > + return sbi_ecall(SBI_EXT_HSM, SBI_EXT_HSM_HART_STOP, 0, 0, 0, 0, 0, 0);
> > +}
> > +
> > +struct sbiret sbi_hart_get_status(unsigned long hartid)
> > +{
> > + return sbi_ecall(SBI_EXT_HSM, SBI_EXT_HSM_HART_STATUS, hartid, 0, 0, 0, 0, 0);
> > +}
> > +
> > struct sbiret sbi_send_ipi(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);
> > diff --git a/riscv/sbi.c b/riscv/sbi.c
> > index f88bf700..c9fbd6db 100644
> > --- a/riscv/sbi.c
> > +++ b/riscv/sbi.c
> > @@ -73,6 +73,11 @@ static phys_addr_t get_highest_addr(void)
> > return highest_end - 1;
> > }
> >
> > +static struct sbiret sbi_hart_suspend(uint32_t suspend_type, unsigned long resume_addr, unsigned long opaque)
> > +{
> > + return sbi_ecall(SBI_EXT_HSM, SBI_EXT_HSM_HART_SUSPEND, suspend_type, resume_addr, opaque, 0, 0, 0);
> > +}
> > +
>
> This hunk needs to be moved to the next patch since the build will
> otherwise fail due to the function being unused. We want each commit
> to build in order to maintain bisectability. You may want to test
> your series with something like
>
> ./configure --arch=riscv64 --cross-prefix=riscv64-linux-gnu-
> git rebase -x 'make' <some-base-commit>
>
> Also we should put sbi_hart_suspend() directly under sbi_dbcn_write_byte()
> in order to keep all the sbi_ecall wrappers grouped together.
>
I removed the hunk and applied to riscv/sbi,
https://gitlab.com/jones-drew/kvm-unit-tests/-/commits/riscv/sbi
Thanks,
drew
next prev parent reply other threads:[~2024-09-12 14:06 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-10 15:15 [kvm-unit-tests PATCH v3 0/2] riscv: sbi: Add support to test HSM extension James Raphael Tiovalen
2024-09-10 15:15 ` [kvm-unit-tests PATCH v3 1/2] riscv: sbi: Add HSM extension functions James Raphael Tiovalen
2024-09-11 15:45 ` Andrew Jones
2024-09-12 14:06 ` Andrew Jones [this message]
2024-09-10 15:15 ` [kvm-unit-tests PATCH v3 2/2] riscv: sbi: Add tests for HSM extension James Raphael Tiovalen
2024-09-12 14:04 ` 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=20240912-f404e2ed36d3a09b123a4f6e@orel \
--to=andrew.jones@linux.dev \
--cc=atishp@rivosinc.com \
--cc=cade.richard@berkeley.edu \
--cc=jamestiotio@gmail.com \
--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