Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
target/riscv: Use aesdec_ISB_ISR_AK
This implements the AES64DS instruction.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Jul 9, 2023
1 parent cad2653 commit 7a70583
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion target/riscv/crypto_helper.c
Expand Up @@ -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)
Expand Down

0 comments on commit 7a70583

Please sign in to comment.