target/riscv: Use aesdec_ISB_ISR_AK
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 2 Jun 2023 08:33:15 +0000 (01:33 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Sun, 9 Jul 2023 12:47:11 +0000 (13:47 +0100)
This implements the AES64DS instruction.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
target/riscv/crypto_helper.c

index b072fed3e2daa8e7b6ed1f4358e3468e3dfc79dd..e61f7fe1e52d9744b9845334d0e88eed603b90cc 100644 (file)
@@ -213,7 +213,12 @@ target_ulong HELPER(aes64es)(target_ulong rs1, target_ulong rs2)
 
 target_ulong HELPER(aes64ds)(target_ulong rs1, target_ulong rs2)
 {
-    return aes64_operation(rs1, rs2, false, false);
+    AESState t;
+
+    t.d[HOST_BIG_ENDIAN] = rs1;
+    t.d[!HOST_BIG_ENDIAN] = rs2;
+    aesdec_ISB_ISR_AK(&t, &t, &aes_zero, false);
+    return t.d[HOST_BIG_ENDIAN];
 }
 
 target_ulong HELPER(aes64dsm)(target_ulong rs1, target_ulong rs2)