projects
/
users
/
jedix
/
linux-maple.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17a2409
)
kselftest/arm64: Fix encoding for SVE B16B16 test
author
Mark Brown <broonie@kernel.org>
Mon, 28 Oct 2024 20:22:31 +0000
(20:22 +0000)
committer
Catalin Marinas <catalin.marinas@arm.com>
Fri, 1 Nov 2024 16:39:21 +0000
(16:39 +0000)
The test for SVE_B16B16 had a cut'n'paste of a SME instruction, fix it with
a relevant SVE instruction.
Fixes: 44d10c27bd75 ("kselftest/arm64: Add 2023 DPISA hwcap test coverage")
Signed-off-by: Mark Brown <broonie@kernel.org>
Link:
https://lore.kernel.org/r/20241028-arm64-b16b16-test-v1-1-59a4a7449bdf@kernel.org
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
tools/testing/selftests/arm64/abi/hwcap.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/arm64/abi/hwcap.c
b/tools/testing/selftests/arm64/abi/hwcap.c
index 7e95ba5fd4962e00f13bd062df25425b4f2ab990..265654ec48b9fc04f99162c2f4cc3e9948910017 100644
(file)
--- a/
tools/testing/selftests/arm64/abi/hwcap.c
+++ b/
tools/testing/selftests/arm64/abi/hwcap.c
@@
-361,8
+361,8
@@
static void sveaes_sigill(void)
static void sveb16b16_sigill(void)
{
- /* BFADD Z
A.H[W0, 0], {Z0.H-Z1.H}
*/
- asm volatile(".inst 0x
C1E41C
00" : : : );
+ /* BFADD Z
0.H, Z0.H, Z0.H
*/
+ asm volatile(".inst 0x
650000
00" : : : );
}
static void svepmull_sigill(void)