tools/testing/selftests/arm64/abi/hwcap.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)
Hi all, This patch series fixes and adds two selftests in the arm64 hwcap test suite. Patch 1/2 fixes the sve2p1_sigill() test to correctly detect the FEAT_SVE2p1 feature. Previously, the test incorrectly assumed that the presence of FEAT_SVE2.1 implied support for the BFADD instruction, which actually depends on the FEAT_SVE_B16B16 feature. The test is updated to use the LD1Q instruction, which is unambiguously implied by FEAT_SVE2p1. Patch 2/2 implements the cmpbr_sigill() test to correctly detect the presence of the CMPBR extension. The test uses the CBEQ instruction, which is valid only if the CPU supports the extension. If supported, a branch is taken and the UDF instruction is skipped, avoiding a SIGILL. Otherwise, the UDF is executed and a SIGILL is generated. These changes improve the accuracy and reliability of the selftests for arm64 hardware capability detection. References: CBEQ: https://developer.arm.com/documentation/ddi0602/2025-12/Base-Instructions/CB-cc---register---Compare-registers-and-branch-?lang=en BFADD: https://developer.arm.com/documentation/ddi0602/2025-12/SVE-Instructions/BFADD--unpredicated---BFloat16-add--unpredicated--?lang=en LD1Q: https://developer.arm.com/documentation/ddi0602/2025-12/SVE-Instructions/LD1Q--Gather-load-quadwords-?lang=en ID_AA64ZFR0_EL1: https://developer.arm.com/documentation/ddi0601/2025-03/AArch64-Registers/ID-AA64ZFR0-EL1--SVE-Feature-ID-Register-0?lang=en Change Log: v1: Fixes the sve2p1_sigill() in patch 1. Implements cmpbr_sigill() by the single asm volatile statement. Updated the comments. v1 can be found at: https://lore.kernel.org/all/20260227031933.4103333-1-wuyifan50@huawei.com/ Yifan Wu (2): selftest/arm64: Fix sve2p1_sigill() to hwcap test selftests/arm64: Implement cmpbr_sigill() to hwcap test tools/testing/selftests/arm64/abi/hwcap.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) -- 2.33.0
On Thu, 05 Mar 2026 09:36:36 +0800, Yifan Wu wrote:
> This patch series fixes and adds two selftests in the arm64 hwcap
> test suite.
>
> Patch 1/2 fixes the sve2p1_sigill() test to correctly detect the
> FEAT_SVE2p1 feature. Previously, the test incorrectly assumed that
> the presence of FEAT_SVE2.1 implied support for the BFADD
> instruction, which actually depends on the FEAT_SVE_B16B16 feature.
> The test is updated to use the LD1Q instruction, which is
> unambiguously implied by FEAT_SVE2p1.
>
> [...]
Applied first patch to arm64 (for-next/fixes), thanks!
[1/2] selftest/arm64: Fix sve2p1_sigill() to hwcap test
https://git.kernel.org/arm64/c/d87c828daa7e
Cheers,
--
Will
https://fixes.arm64.dev
https://next.arm64.dev
https://will.arm64.dev
HiWill, Gentle ping on patch 2/2. I have received a Reviewed-by from Mark Brown and there have been no further review comments so far. Could you please consider applying it if everything looks good? On 3/6/2026 8:26 PM, Will Deacon wrote: > On Thu, 05 Mar 2026 09:36:36 +0800, Yifan Wu wrote: >> This patch series fixes and adds two selftests in the arm64 hwcap >> test suite. >> >> Patch 1/2 fixes the sve2p1_sigill() test to correctly detect the >> FEAT_SVE2p1 feature. Previously, the test incorrectly assumed that >> the presence of FEAT_SVE2.1 implied support for the BFADD >> instruction, which actually depends on the FEAT_SVE_B16B16 feature. >> The test is updated to use the LD1Q instruction, which is >> unambiguously implied by FEAT_SVE2p1. >> >> [...] > Applied first patch to arm64 (for-next/fixes), thanks! > > [1/2] selftest/arm64: Fix sve2p1_sigill() to hwcap test > https://git.kernel.org/arm64/c/d87c828daa7e > > Cheers, Thanks, Yifan
On Thu, 05 Mar 2026 09:36:36 +0800, Yifan Wu wrote:
> This patch series fixes and adds two selftests in the arm64 hwcap
> test suite.
>
> Patch 1/2 fixes the sve2p1_sigill() test to correctly detect the
> FEAT_SVE2p1 feature. Previously, the test incorrectly assumed that
> the presence of FEAT_SVE2.1 implied support for the BFADD
> instruction, which actually depends on the FEAT_SVE_B16B16 feature.
> The test is updated to use the LD1Q instruction, which is
> unambiguously implied by FEAT_SVE2p1.
>
> [...]
Applied to arm64 (for-kernelci), thanks!
[2/2] selftests/arm64: Implement cmpbr_sigill() to hwcap test
https://git.kernel.org/arm64/c/74cd4e0e5399
--
Catalin
On Fri, Mar 27, 2026 at 12:58:11PM +0000, Catalin Marinas wrote: > On Thu, 05 Mar 2026 09:36:36 +0800, Yifan Wu wrote: > > This patch series fixes and adds two selftests in the arm64 hwcap > > test suite. > > > > Patch 1/2 fixes the sve2p1_sigill() test to correctly detect the > > FEAT_SVE2p1 feature. Previously, the test incorrectly assumed that > > the presence of FEAT_SVE2.1 implied support for the BFADD > > instruction, which actually depends on the FEAT_SVE_B16B16 feature. > > The test is updated to use the LD1Q instruction, which is > > unambiguously implied by FEAT_SVE2p1. > > > > [...] > > Applied to arm64 (for-kernelci), thanks! Wrong branch, it's for-next/kselftest (script got confused).
© 2016 - 2026 Red Hat, Inc.