[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 16/38] target/riscv: Use aesdec_ISB_ISR_AK
From: |
Richard Henderson |
Subject: |
[PATCH v2 16/38] target/riscv: Use aesdec_ISB_ISR_AK |
Date: |
Thu, 8 Jun 2023 19:23:39 -0700 |
This implements the AES64DS instruction.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/riscv/crypto_helper.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/target/riscv/crypto_helper.c b/target/riscv/crypto_helper.c
index b072fed3e2..e61f7fe1e5 100644
--- a/target/riscv/crypto_helper.c
+++ b/target/riscv/crypto_helper.c
@@ -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)
--
2.34.1
- Re: [PATCH v2 06/38] crypto: Add aesenc_SB_SR_AK, (continued)
- [PATCH v2 08/38] target/arm: Demultiplex AESE and AESMC, Richard Henderson, 2023/06/08
- [PATCH v2 11/38] target/riscv: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 12/38] crypto: Add aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 13/38] target/i386: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 09/38] target/arm: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 15/38] target/ppc: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 16/38] target/riscv: Use aesdec_ISB_ISR_AK,
Richard Henderson <=
- [PATCH v2 14/38] target/arm: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 18/38] target/arm: Use aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 17/38] crypto: Add aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 26/38] target/riscv: Use aesenc_SB_SR_MC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 20/38] target/i386: Use aesdec_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 27/38] crypto: Add aesdec_ISB_ISR_IMC_AK, Richard Henderson, 2023/06/08
- [PATCH v2 19/38] crypto: Add aesdec_IMC, Richard Henderson, 2023/06/08
- [PATCH v2 32/38] crypto: Remove AES_shifts, AES_ishifts, Richard Henderson, 2023/06/08
- [PATCH v2 21/38] target/arm: Use aesdec_IMC, Richard Henderson, 2023/06/08