Re: [PATCH v10 07/14] target/riscv: rvk: add support for zkne/zknd extension in RV64

2022-04-15 Thread Richard Henderson
On 4/15/22 19:35, Weiwei Li wrote: +target_ulong HELPER(aes64esm)(target_ulong rs1, target_ulong rs2) +{ +return aes64_operation(rs1, rs2, true, true); +} + +target_ulong HELPER(aes64es)(target_ulong rs1, target_ulong rs2) +{ +return aes64_operation(rs1, rs2, true, false); +} +

[PATCH v10 07/14] target/riscv: rvk: add support for zkne/zknd extension in RV64

2022-04-15 Thread Weiwei Li
- add aes64dsm, aes64ds, aes64im, aes64es, aes64esm, aes64ks2, aes64ks1i instructions Co-authored-by: Ruibo Lu Co-authored-by: Zewen Ye Signed-off-by: Weiwei Li Signed-off-by: Junqiang Wang Reviewed-by: Richard Henderson Acked-by: Alistair Francis --- target/riscv/crypto_helper.c