From: Charlie Jenkins <charlie@rivosinc.com>
To: Palmer Dabbelt <palmer@dabbelt.com>
Cc: jesse@rivosinc.com, linux-riscv@lists.infradead.org,
corbet@lwn.net, Paul Walmsley <paul.walmsley@sifive.com>,
aou@eecs.berkeley.edu, Conor Dooley <conor@kernel.org>,
robh@kernel.org, krzk+dt@kernel.org, cleger@rivosinc.com,
Evan Green <evan@rivosinc.com>,
ajones@ventanamicro.com, xiao.w.wang@intel.com,
andy.chiu@sifive.com, ebiggers@google.com,
greentime.hu@sifive.com, Bjorn Topel <bjorn@rivosinc.com>,
Heiko Stuebner <heiko@sntech.de>,
costa.shul@redhat.com, akpm@linux-foundation.org, bhe@redhat.com,
apatel@ventanamicro.com, zong.li@sifive.com,
samitolvanen@google.com, ben.dooks@codethink.co.uk,
alexghiti@rivosinc.com, gustavoars@kernel.org,
erick.archer@gmx.com, j.granados@samsung.com,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH v9 0/6] RISC-V: Detect and report speed of unaligned vector accesses
Date: Fri, 20 Sep 2024 23:32:49 +0200 [thread overview]
Message-ID: <Zu3qAdGYJfNPTK15@ghost> (raw)
In-Reply-To: <Zu3illShBOscs+zN@ghost>
On Fri, Sep 20, 2024 at 11:01:10PM +0200, Charlie Jenkins wrote:
> On Fri, Sep 20, 2024 at 05:57:22AM -0700, Palmer Dabbelt wrote:
> > On Tue, 20 Aug 2024 08:24:18 PDT (-0700), jesse@rivosinc.com wrote:
> > > Adds support for detecting and reporting the speed of unaligned vector
> > > accesses on RISC-V CPUs. Adds vec_misaligned_speed key to the hwprobe
> > > adds Zicclsm to cpufeature and fixes the check for scalar unaligned
> > > emulated all CPUs. The vec_misaligned_speed key keeps the same format
> > > as the scalar unaligned access speed key.
> > >
> > > This set does not emulate unaligned vector accesses on CPUs that do not
> > > support them. Only reports if userspace can run them and speed of
> > > unaligned vector accesses if supported.
> > >
> > > The Zicclsm is patches are no longer related to this set.
> > >
> > > Changes in v6:
> > > Added ("RISC-V: Scalar unaligned access emulated on hotplug CPUs")
> > >
> > > Changes in V8:
> > > Dropped Zicclsm
> > > s/RISCV_HWPROBE_VECTOR_MISALIGNED/RISCV_HWPROBE_MISALIGNED_VECTOR/g
> > > to match RISCV_HWPROBE_MISALIGNED_SCALAR_*
> > > Rebased onto palmer/fixes (32d5f7add080a936e28ab4142bfeea6b06999789)
> > >
> > > Changes in V9:
> > > Missed a RISCV_HWPROBE_VECTOR_MISALIGNED...
> > >
> > > Jesse Taube (6):
> > > RISC-V: Check scalar unaligned access on all CPUs
> > > RISC-V: Scalar unaligned access emulated on hotplug CPUs
> > > RISC-V: Replace RISCV_MISALIGNED with RISCV_SCALAR_MISALIGNED
> > > RISC-V: Detect unaligned vector accesses supported
> > > RISC-V: Report vector unaligned access speed hwprobe
> > > RISC-V: hwprobe: Document unaligned vector perf key
> > >
> > > Documentation/arch/riscv/hwprobe.rst | 16 +++
> > > arch/riscv/Kconfig | 57 +++++++-
> > > arch/riscv/include/asm/cpufeature.h | 10 +-
> > > arch/riscv/include/asm/entry-common.h | 11 --
> > > arch/riscv/include/asm/hwprobe.h | 2 +-
> > > arch/riscv/include/asm/vector.h | 2 +
> > > arch/riscv/include/uapi/asm/hwprobe.h | 5 +
> > > arch/riscv/kernel/Makefile | 3 +-
> > > arch/riscv/kernel/copy-unaligned.h | 5 +
> > > arch/riscv/kernel/fpu.S | 4 +-
> > > arch/riscv/kernel/sys_hwprobe.c | 41 ++++++
> > > arch/riscv/kernel/traps_misaligned.c | 131 +++++++++++++++--
> > > arch/riscv/kernel/unaligned_access_speed.c | 156 +++++++++++++++++++--
> > > arch/riscv/kernel/vec-copy-unaligned.S | 58 ++++++++
> > > arch/riscv/kernel/vector.c | 2 +-
> > > 15 files changed, 465 insertions(+), 38 deletions(-)
> > > create mode 100644 arch/riscv/kernel/vec-copy-unaligned.S
> > >
> > > base-commit: 32d5f7add080a936e28ab4142bfeea6b06999789
> >
> > I get a
> >
> > arch/riscv/kernel/traps_smisaligned.c: In function 'check_vector_unaligned_access_emulated':
> > arch/riscv/kernel/traps_misaligned.c:591:9: error: unknown register name 'v0' in 'asm'
> > 591 | __asm__ __volatile__ (
> > | ^~~~~~~
> >
> > on rv32/defconfig. Looks like just a missing Kconfg guard as this depends
> > on V support in the toolchain.
>
> There was an interesting iteraction here!
> RISCV_PROBE_VECTOR_UNALIGNED_ACCESS was selecting
> RISCV_VECTOR_MISALIGNED but that bypasses the depends on check of
> RISCV_ISA_V. I'll send an update for Jesse with the fix for that one
> patch.
I take it back, I am not able to reproduce this.
RISCV_PROBE_VECTOR_UNALIGNED_ACCESS is hidden behind "Vector unaligned
Accesses Support" which depends on RISCV_ISA_V. This function that is
erroring has the code:
#ifdef CONFIG_RISCV_VECTOR_MISALIGNED
void check_vector_unaligned_access_emulated(struct work_struct *work __always_unused)
...
Since it is hidden behind CONFIG_RISCV_VECTOR_MISALIGNED, I am unsure
how it is possible that this error is leaking through. The error you
posted is also kind of odd because the first file you have is
"arch/riscv/kernel/traps_smisaligned.c" but the actual file is
"arch/riscv/kernel/traps_misaligned.c".
> - Charlie
>
next prev parent reply other threads:[~2024-09-20 21:32 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-20 15:24 [PATCH v9 0/6] RISC-V: Detect and report speed of unaligned vector accesses Jesse Taube
2024-08-20 15:24 ` [PATCH v9 1/6] RISC-V: Check scalar unaligned access on all CPUs Jesse Taube
2024-08-20 15:24 ` [PATCH v9 2/6] RISC-V: Scalar unaligned access emulated on hotplug CPUs Jesse Taube
2024-08-20 15:24 ` [PATCH v9 3/6] RISC-V: Replace RISCV_MISALIGNED with RISCV_SCALAR_MISALIGNED Jesse Taube
2024-08-20 15:24 ` [PATCH v9 4/6] RISC-V: Detect unaligned vector accesses supported Jesse Taube
2024-08-20 15:24 ` [PATCH v9 5/6] RISC-V: Report vector unaligned access speed hwprobe Jesse Taube
2024-08-20 15:24 ` [PATCH v9 6/6] RISC-V: hwprobe: Document unaligned vector perf key Jesse Taube
2024-09-20 12:57 ` [PATCH v9 0/6] RISC-V: Detect and report speed of unaligned vector accesses Palmer Dabbelt
2024-09-20 21:01 ` Charlie Jenkins
2024-09-20 21:32 ` Charlie Jenkins [this message]
2024-10-24 17:50 ` 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=Zu3qAdGYJfNPTK15@ghost \
--to=charlie@rivosinc.com \
--cc=ajones@ventanamicro.com \
--cc=akpm@linux-foundation.org \
--cc=alexghiti@rivosinc.com \
--cc=andy.chiu@sifive.com \
--cc=aou@eecs.berkeley.edu \
--cc=apatel@ventanamicro.com \
--cc=ben.dooks@codethink.co.uk \
--cc=bhe@redhat.com \
--cc=bjorn@rivosinc.com \
--cc=cleger@rivosinc.com \
--cc=conor@kernel.org \
--cc=corbet@lwn.net \
--cc=costa.shul@redhat.com \
--cc=devicetree@vger.kernel.org \
--cc=ebiggers@google.com \
--cc=erick.archer@gmx.com \
--cc=evan@rivosinc.com \
--cc=greentime.hu@sifive.com \
--cc=gustavoars@kernel.org \
--cc=heiko@sntech.de \
--cc=j.granados@samsung.com \
--cc=jesse@rivosinc.com \
--cc=krzk+dt@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=samitolvanen@google.com \
--cc=xiao.w.wang@intel.com \
--cc=zong.li@sifive.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).