public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Sean Anderson <seanga2@gmail.com>
To: Heinrich Schuchardt <xypron.glpk@gmx.de>, Rick Chen <rick@andestech.com>
Cc: Leo <ycliang@andestech.com>, "Alexander Graf" <agraf@csgraf.de>,
	"Bin Meng" <bin.meng@windriver.com>,
	"Green Wan" <green.wan@sifive.com>,
	"Marek Behún" <marek.behun@nic.cz>,
	"Pragnesh Patel" <pragnesh.patel@openfive.com>,
	"Atish Patra" <atish.patra@wdc.com>,
	"Ley Foon Tan" <ley.foon.tan@intel.com>,
	"Chee Hong Ang" <chee.hong.ang@intel.com>,
	"Simon Glass" <sjg@chromium.org>,
	"Siew Chin Lim" <elly.siew.chin.lim@intel.com>,
	"Sebastian Reichel" <sebastian.reichel@collabora.com>,
	u-boot@lists.denx.de
Subject: Re: [PATCH v2 1/3] risv: add missing SBI extension definitions
Date: Wed, 21 Jul 2021 13:02:10 -0400	[thread overview]
Message-ID: <985b44a4-7634-245c-70eb-aba1ae541a2e@gmail.com> (raw)
In-Reply-To: <20210721163305.74945-2-xypron.glpk@gmx.de>

On 7/21/21 12:33 PM, Heinrich Schuchardt wrote:
> Add the System Reset Extension and the Hart State Management Extension
> definitions.
> 
> Add missing RFENCE Extension enum values.
> 
> The SBI 0.1 extension constants are needed for for the sbi command. Remove
> an #ifdef.
> 
> Cf. https://github.com/riscv/riscv-sbi-doc/blob/master/riscv-sbi.adoc
> 
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> ---
> v2:
> 	correct constants that were blindly copied from Linux
> ---
>   arch/riscv/include/asm/sbi.h | 36 ++++++++++++++++++++++++++++++++++--
>   1 file changed, 34 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/riscv/include/asm/sbi.h b/arch/riscv/include/asm/sbi.h
> index 53ca316180..39d5a022e0 100644
> --- a/arch/riscv/include/asm/sbi.h
> +++ b/arch/riscv/include/asm/sbi.h
> @@ -12,7 +12,6 @@
>   #include <linux/types.h>
> 
>   enum sbi_ext_id {
> -#ifdef CONFIG_SBI_V01
>   	SBI_EXT_0_1_SET_TIMER = 0x0,
>   	SBI_EXT_0_1_CONSOLE_PUTCHAR = 0x1,
>   	SBI_EXT_0_1_CONSOLE_GETCHAR = 0x2,
> @@ -22,11 +21,12 @@ enum sbi_ext_id {
>   	SBI_EXT_0_1_REMOTE_SFENCE_VMA = 0x6,
>   	SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID = 0x7,
>   	SBI_EXT_0_1_SHUTDOWN = 0x8,
> -#endif
>   	SBI_EXT_BASE = 0x10,
>   	SBI_EXT_TIME = 0x54494D45,
>   	SBI_EXT_IPI = 0x735049,
>   	SBI_EXT_RFENCE = 0x52464E43,
> +	SBI_EXT_HSM = 0x48534D,
> +	SBI_EXT_SRST = 0x53525354,
>   };
> 
>   enum sbi_ext_base_fid {
> @@ -51,6 +51,38 @@ enum sbi_ext_rfence_fid {
>   	SBI_EXT_RFENCE_REMOTE_FENCE_I = 0,
>   	SBI_EXT_RFENCE_REMOTE_SFENCE_VMA,
>   	SBI_EXT_RFENCE_REMOTE_SFENCE_VMA_ASID,
> +	SBI_EXT_RFENCE_REMOTE_HFENCE_GVMA_VMID,
> +	SBI_EXT_RFENCE_REMOTE_HFENCE_GVMA,
> +	SBI_EXT_RFENCE_REMOTE_HFENCE_VVMA_ASID,
> +	SBI_EXT_RFENCE_REMOTE_HFENCE_VVMA,
> +};
> +
> +enum sbi_ext_hsm_fid {
> +	SBI_EXT_HSM_HART_START = 0,
> +	SBI_EXT_HSM_HART_STOP,
> +	SBI_EXT_HSM_HART_STATUS,
> +};
> +
> +enum sbi_hsm_hart_status {
> +	SBI_HSM_HART_STATUS_STARTED = 0,
> +	SBI_HSM_HART_STATUS_STOPPED,
> +	SBI_HSM_HART_STATUS_START_PENDING,
> +	SBI_HSM_HART_STATUS_STOP_PENDING,

Perhaps add the suspend states from https://github.com/riscv/riscv-sbi-doc/pull/66

> +};
> +
> +enum sbi_ext_srst_fid {
> +	SBI_EXT_SRST_RESET = 0,
> +};
> +
> +enum sbi_srst_reset_type {
> +	SBI_SRST_RESET_TYPE_SHUTDOWN = 0,
> +	SBI_SRST_RESET_TYPE_COLD_REBOOT,
> +	SBI_SRST_RESET_TYPE_WARM_REBOOT,
> +};
> +
> +enum sbi_srst_reset_reason {
> +	SBI_SRST_RESET_REASON_NONE = 0,
> +	SBI_SRST_RESET_REASON_SYS_FAILURE,
>   };
> 
>   #ifdef CONFIG_SBI_V01
> --
> 2.30.2
> 

Reviewed-by: Sean Anderson <seanga2@gmail.com>

  reply	other threads:[~2021-07-21 17:02 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-21 16:33 [PATCH v2 0/3] riscv: enable SBI system reset Heinrich Schuchardt
2021-07-21 16:33 ` [PATCH v2 1/3] risv: add missing SBI extension definitions Heinrich Schuchardt
2021-07-21 17:02   ` Sean Anderson [this message]
2021-07-26  7:59     ` Leo Liang
2021-07-26  7:10   ` Leo Liang
2021-08-02  8:45   ` Leo Liang
2021-07-21 16:33 ` [PATCH v2 2/3] cmd/sbi: use constants instead of numerical values Heinrich Schuchardt
2021-07-21 16:33 ` [PATCH v2 3/3] sysreset: provide SBI based sysreset driver Heinrich Schuchardt
2021-07-21 17:05   ` Sean Anderson
2021-07-26  8:12   ` Leo Liang

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=985b44a4-7634-245c-70eb-aba1ae541a2e@gmail.com \
    --to=seanga2@gmail.com \
    --cc=agraf@csgraf.de \
    --cc=atish.patra@wdc.com \
    --cc=bin.meng@windriver.com \
    --cc=chee.hong.ang@intel.com \
    --cc=elly.siew.chin.lim@intel.com \
    --cc=green.wan@sifive.com \
    --cc=ley.foon.tan@intel.com \
    --cc=marek.behun@nic.cz \
    --cc=pragnesh.patel@openfive.com \
    --cc=rick@andestech.com \
    --cc=sebastian.reichel@collabora.com \
    --cc=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    --cc=ycliang@andestech.com \
    /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