* [PATCH v2 3/4] docs: riscv: Document hwprobe for Zicbop [not found] <20251009134318.23040-1-zihong.plct@isrc.iscas.ac.cn> @ 2025-10-09 13:41 ` Yao Zihong 2025-10-09 16:46 ` Andrew Jones 0 siblings, 1 reply; 2+ messages in thread From: Yao Zihong @ 2025-10-09 13:41 UTC (permalink / raw) To: linux-riscv, linux-kernel Cc: ajones, alexghiti, shuah, samuel.holland, evan, cleger, zihong.plct, zihongyao, zhangyin2018, Jonathan Corbet, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Charlie Jenkins, Cyan Yang, Jesse Taube, Yunhui Cui, Nam Cao, open list:DOCUMENTATION Update hwprobe.rst to include documentation of the new :c:macro:`RISCV_HWPROBE_EXT_ZICBOP` and :c:macro:`RISCV_HWPROBE_KEY_ZICBOP_BLOCK_SIZE`, following the same style as the Zicbom and Zicboz entries. The extension bit records support for the Zicbop extension, and the block size key reports the block size in bytes. Signed-off-by: Yao Zihong <zihong.plct@isrc.iscas.ac.cn> --- Documentation/arch/riscv/hwprobe.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/arch/riscv/hwprobe.rst b/Documentation/arch/riscv/hwprobe.rst index 2f449c9b15bd..3b9c9d7e1409 100644 --- a/Documentation/arch/riscv/hwprobe.rst +++ b/Documentation/arch/riscv/hwprobe.rst @@ -275,6 +275,9 @@ The following keys are defined: ratified in commit 49f49c842ff9 ("Update to Rafified state") of riscv-zabha. + * :c:macro:`RISCV_HWPROBE_EXT_ZICBOP`: The Zicbop extension is supported, as + ratified in commit 3dd606f ("Create cmobase-v1.0.pdf") of riscv-CMOs. + * :c:macro:`RISCV_HWPROBE_KEY_CPUPERF_0`: Deprecated. Returns similar values to :c:macro:`RISCV_HWPROBE_KEY_MISALIGNED_SCALAR_PERF`, but the key was mistakenly classified as a bitmask rather than a value. @@ -369,4 +372,7 @@ The following keys are defined: * :c:macro:`RISCV_HWPROBE_VENDOR_EXT_XSFVFWMACCQQQ`: The Xsfvfwmaccqqq vendor extension is supported in version 1.0 of Matrix Multiply Accumulate - Instruction Extensions Specification. \ No newline at end of file + Instruction Extensions Specification. + +* :c:macro:`RISCV_HWPROBE_KEY_ZICBOP_BLOCK_SIZE`: An unsigned int which + represents the size of the Zicbop block in bytes. \ No newline at end of file -- 2.47.2 ^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2 3/4] docs: riscv: Document hwprobe for Zicbop 2025-10-09 13:41 ` [PATCH v2 3/4] docs: riscv: Document hwprobe for Zicbop Yao Zihong @ 2025-10-09 16:46 ` Andrew Jones 0 siblings, 0 replies; 2+ messages in thread From: Andrew Jones @ 2025-10-09 16:46 UTC (permalink / raw) To: Yao Zihong Cc: linux-riscv, linux-kernel, alexghiti, shuah, samuel.holland, evan, cleger, zihongyao, zhangyin2018, Jonathan Corbet, Paul Walmsley, Palmer Dabbelt, Albert Ou, Alexandre Ghiti, Charlie Jenkins, Cyan Yang, Jesse Taube, Yunhui Cui, Nam Cao, open list:DOCUMENTATION On Thu, Oct 09, 2025 at 09:41:53PM +0800, Yao Zihong wrote: > Update hwprobe.rst to include documentation of the new > :c:macro:`RISCV_HWPROBE_EXT_ZICBOP` and > :c:macro:`RISCV_HWPROBE_KEY_ZICBOP_BLOCK_SIZE`, following the same > style as the Zicbom and Zicboz entries. > > The extension bit records support for the Zicbop extension, and > the block size key reports the block size in bytes. > > Signed-off-by: Yao Zihong <zihong.plct@isrc.iscas.ac.cn> > --- > Documentation/arch/riscv/hwprobe.rst | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/Documentation/arch/riscv/hwprobe.rst b/Documentation/arch/riscv/hwprobe.rst > index 2f449c9b15bd..3b9c9d7e1409 100644 > --- a/Documentation/arch/riscv/hwprobe.rst > +++ b/Documentation/arch/riscv/hwprobe.rst > @@ -275,6 +275,9 @@ The following keys are defined: > ratified in commit 49f49c842ff9 ("Update to Rafified state") of > riscv-zabha. > > + * :c:macro:`RISCV_HWPROBE_EXT_ZICBOP`: The Zicbop extension is supported, as > + ratified in commit 3dd606f ("Create cmobase-v1.0.pdf") of riscv-CMOs. > + > * :c:macro:`RISCV_HWPROBE_KEY_CPUPERF_0`: Deprecated. Returns similar values to > :c:macro:`RISCV_HWPROBE_KEY_MISALIGNED_SCALAR_PERF`, but the key was > mistakenly classified as a bitmask rather than a value. > @@ -369,4 +372,7 @@ The following keys are defined: > > * :c:macro:`RISCV_HWPROBE_VENDOR_EXT_XSFVFWMACCQQQ`: The Xsfvfwmaccqqq > vendor extension is supported in version 1.0 of Matrix Multiply Accumulate > - Instruction Extensions Specification. > \ No newline at end of file > + Instruction Extensions Specification. > + > +* :c:macro:`RISCV_HWPROBE_KEY_ZICBOP_BLOCK_SIZE`: An unsigned int which > + represents the size of the Zicbop block in bytes. > \ No newline at end of file Please ensure this file has a newline so the last line doesn't have to change every time we add new keys. Thanks, drew ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-09 16:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20251009134318.23040-1-zihong.plct@isrc.iscas.ac.cn>
2025-10-09 13:41 ` [PATCH v2 3/4] docs: riscv: Document hwprobe for Zicbop Yao Zihong
2025-10-09 16:46 ` Andrew Jones
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox