From: "Radim Krčmář" <rkrcmar@ventanamicro.com>
To: <cp0613@linux.alibaba.com>, <opensbi@lists.infradead.org>
Cc: <anup@brainfault.org>, <guoren@kernel.org>,
"opensbi" <opensbi-bounces@lists.infradead.org>
Subject: Re: [PATCH v4] lib: sbi: Enable Ssqosid Ext using mstateen0
Date: Fri, 14 Nov 2025 11:37:56 +0100 [thread overview]
Message-ID: <DE8CP7JNU9LK.32K25AJH9SUU8@ventanamicro.com> (raw)
In-Reply-To: <20251114071359.1492-1-cp0613@linux.alibaba.com>
2025-11-14T15:13:58+08:00, <cp0613@linux.alibaba.com>:
> From: Chen Pei <cp0613@linux.alibaba.com>
>
> The QoS Identifiers extension (Ssqosid) introduces the srmcfg register,
> which configures a hart with two identifiers: a Resource Control ID
> (RCID) and a Monitoring Counter ID (MCID). These identifiers accompany
> each request issued by the hart to shared resource controllers.
>
> If extension Smstateen is implemented together with Ssqosid, then
> Ssqosid also requires the SRMCFG bit in mstateen0 to be implemented. If
> mstateen0.SRMCFG is 0, attempts to access srmcfg in privilege modes less
> privileged than M-mode raise an illegal-instruction exception. If
> mstateen0.SRMCFG is 1 or if extension Smstateen is not implemented,
> attempts to access srmcfg when V=1 raise a virtual-instruction exception.
>
> This extension can be found in the RISC-V Instruction Set Manual:
> https://github.com/riscv/riscv-isa-manual
>
> Signed-off-by: Chen Pei <cp0613@linux.alibaba.com>
> ---
v4: remove extraneous parentheses around SMSTATEEN0_SRMCFG
> diff --git a/include/sbi/sbi_hart.h b/include/sbi/sbi_hart.h
> @@ -143,8 +145,11 @@ static int switch_to_next_domain_context(struct hart_context *ctx,
> ctx->satp = csr_swap(CSR_SATP, dom_ctx->satp);
> if (sbi_hart_priv_version(scratch) >= SBI_HART_PRIV_VER_1_10)
> ctx->scounteren = csr_swap(CSR_SCOUNTEREN, dom_ctx->scounteren);
> - if (sbi_hart_priv_version(scratch) >= SBI_HART_PRIV_VER_1_12)
> + if (sbi_hart_priv_version(scratch) >= SBI_HART_PRIV_VER_1_12) {
> ctx->senvcfg = csr_swap(CSR_SENVCFG, dom_ctx->senvcfg);
> + if (sbi_hart_has_extension(scratch, SBI_HART_EXT_SSQOSID))
> + ctx->srmcfg = csr_swap(CSR_SRMCFG, dom_ctx->srmcfg);
> + }
This should be:
if (sbi_hart_priv_version(scratch) >= SBI_HART_PRIV_VER_1_12)
ctx->senvcfg = csr_swap(CSR_SENVCFG, dom_ctx->senvcfg);
+ if (sbi_hart_has_extension(scratch, SBI_HART_EXT_SSQOSID))
+ ctx->srmcfg = csr_swap(CSR_SRMCFG, dom_ctx->srmcfg);
Because SBI_HART_EXT_SSQOSID doesn't depend on SBI_HART_PRIV_VER_1_12.
Thanks.
--
opensbi mailing list
opensbi@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/opensbi
prev parent reply other threads:[~2025-11-14 10:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-14 7:13 [PATCH v4] lib: sbi: Enable Ssqosid Ext using mstateen0 cp0613
2025-11-14 10:37 ` Radim Krčmář [this message]
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=DE8CP7JNU9LK.32K25AJH9SUU8@ventanamicro.com \
--to=rkrcmar@ventanamicro.com \
--cc=anup@brainfault.org \
--cc=cp0613@linux.alibaba.com \
--cc=guoren@kernel.org \
--cc=opensbi-bounces@lists.infradead.org \
--cc=opensbi@lists.infradead.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