From: "Clément Léger" <cleger@rivosinc.com>
To: linux-riscv@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org
Cc: "Clément Léger" <cleger@rivosinc.com>,
"Palmer Dabbelt" <palmer@rivosinc.com>,
"Paul Walmsley" <paul.walmsley@sifive.com>,
"Rob Herring" <robh+dt@kernel.org>,
"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
"Albert Ou" <aou@eecs.berkeley.edu>,
"Jonathan Corbet" <corbet@lwn.net>,
"Andrew Jones" <ajones@ventanamicro.com>,
"Evan Green" <evan@rivosinc.com>,
"Conor Dooley" <conor@kernel.org>,
"Samuel Ortiz" <sameo@rivosinc.com>,
"Jerry Shih" <jerry.shih@sifive.com>
Subject: [PATCH v4 01/20] riscv: add ISA extension parsing for Zbc
Date: Tue, 14 Nov 2023 09:12:37 -0500 [thread overview]
Message-ID: <20231114141256.126749-2-cleger@rivosinc.com> (raw)
In-Reply-To: <20231114141256.126749-1-cleger@rivosinc.com>
Zbc was documented in the dt-bindings but actually not supported in ISA
string parsing. Add it.
Signed-off-by: Clément Léger <cleger@rivosinc.com>
---
arch/riscv/include/asm/hwcap.h | 1 +
arch/riscv/kernel/cpufeature.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/arch/riscv/include/asm/hwcap.h b/arch/riscv/include/asm/hwcap.h
index 06d30526ef3b..afa9abc1a0b0 100644
--- a/arch/riscv/include/asm/hwcap.h
+++ b/arch/riscv/include/asm/hwcap.h
@@ -57,6 +57,7 @@
#define RISCV_ISA_EXT_ZIHPM 42
#define RISCV_ISA_EXT_SMSTATEEN 43
#define RISCV_ISA_EXT_ZICOND 44
+#define RISCV_ISA_EXT_ZBC 45
#define RISCV_ISA_EXT_MAX 64
diff --git a/arch/riscv/kernel/cpufeature.c b/arch/riscv/kernel/cpufeature.c
index b3785ffc1570..eae14daa5a75 100644
--- a/arch/riscv/kernel/cpufeature.c
+++ b/arch/riscv/kernel/cpufeature.c
@@ -176,6 +176,7 @@ const struct riscv_isa_ext_data riscv_isa_ext[] = {
__RISCV_ISA_EXT_DATA(zihpm, RISCV_ISA_EXT_ZIHPM),
__RISCV_ISA_EXT_DATA(zba, RISCV_ISA_EXT_ZBA),
__RISCV_ISA_EXT_DATA(zbb, RISCV_ISA_EXT_ZBB),
+ __RISCV_ISA_EXT_DATA(zbc, RISCV_ISA_EXT_ZBC),
__RISCV_ISA_EXT_DATA(zbs, RISCV_ISA_EXT_ZBS),
__RISCV_ISA_EXT_DATA(smaia, RISCV_ISA_EXT_SMAIA),
__RISCV_ISA_EXT_DATA(smstateen, RISCV_ISA_EXT_SMSTATEEN),
--
2.42.0
next prev parent reply other threads:[~2023-11-14 14:13 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-14 14:12 [PATCH v4 00/20] riscv: report more ISA extensions through hwprobe Clément Léger
2023-11-14 14:12 ` Clément Léger [this message]
2023-11-14 14:12 ` [PATCH v4 02/20] riscv: hwprobe: export missing Zbc ISA extension Clément Léger
2023-11-14 14:12 ` [PATCH v4 03/20] riscv: add ISA extension parsing for scalar crypto Clément Léger
2023-11-14 14:12 ` [PATCH v4 04/20] riscv: hwprobe: add support for scalar crypto ISA extensions Clément Léger
2023-11-14 14:12 ` [PATCH v4 05/20] dt-bindings: riscv: add scalar crypto ISA extensions description Clément Léger
2023-11-22 16:13 ` Conor Dooley
2023-11-14 14:12 ` [PATCH v4 06/20] riscv: add ISA extension parsing for vector crypto Clément Léger
2023-11-14 14:12 ` [PATCH v4 07/20] riscv: hwprobe: export vector crypto ISA extensions Clément Léger
2023-11-14 14:12 ` [PATCH v4 08/20] dt-bindings: riscv: add vector crypto ISA extensions description Clément Léger
2023-11-14 14:12 ` [PATCH v4 09/20] riscv: add ISA extension parsing for Zfh/Zfh[min] Clément Léger
2023-11-14 14:12 ` [PATCH v4 10/20] riscv: hwprobe: export Zfh[min] ISA extensions Clément Léger
2023-11-14 14:12 ` [PATCH v4 11/20] dt-bindings: riscv: add Zfh[min] ISA extensions description Clément Léger
2023-11-14 14:12 ` [PATCH v4 12/20] riscv: add ISA extension parsing for Zihintntl Clément Léger
2023-11-14 14:12 ` [PATCH v4 13/20] riscv: hwprobe: export Zhintntl ISA extension Clément Léger
2023-11-14 14:12 ` [PATCH v4 14/20] dt-bindings: riscv: add Zihintntl ISA extension description Clément Léger
2023-11-14 14:12 ` [PATCH v4 15/20] riscv: add ISA extension parsing for Zvfh[min] Clément Léger
2023-11-14 14:12 ` [PATCH v4 16/20] riscv: hwprobe: export Zvfh[min] ISA extensions Clément Léger
2023-11-14 14:12 ` [PATCH v4 17/20] dt-bindings: riscv: add Zvfh[min] ISA extension description Clément Léger
2023-11-14 14:12 ` [PATCH v4 18/20] riscv: add ISA extension parsing for Zfa Clément Léger
2023-11-14 14:12 ` [PATCH v4 19/20] riscv: hwprobe: export Zfa ISA extension Clément Léger
2023-11-14 14:12 ` [PATCH v4 20/20] dt-bindings: riscv: add Zfa ISA extension description Clément Léger
2023-11-22 16:16 ` [PATCH v4 00/20] riscv: report more ISA extensions through hwprobe Conor Dooley
2023-12-12 22:20 ` patchwork-bot+linux-riscv
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=20231114141256.126749-2-cleger@rivosinc.com \
--to=cleger@rivosinc.com \
--cc=ajones@ventanamicro.com \
--cc=aou@eecs.berkeley.edu \
--cc=conor@kernel.org \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=evan@rivosinc.com \
--cc=jerry.shih@sifive.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=palmer@rivosinc.com \
--cc=paul.walmsley@sifive.com \
--cc=robh+dt@kernel.org \
--cc=sameo@rivosinc.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;
as well as URLs for NNTP newsgroup(s).