Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
target/riscv: Add Zvbc ISA extension support
This commit adds support for the Zvbc vector-crypto extension, which consists of the following instructions: * vclmulh.[vx,vv] * vclmul.[vx,vv] Translation functions are defined in `target/riscv/insn_trans/trans_rvvk.c.inc` and helpers are defined in `target/riscv/vcrypto_helper.c`. Co-authored-by: Nazar Kazakov <nazar.kazakov@codethink.co.uk> Co-authored-by: Max Chou <max.chou@sifive.com> Signed-off-by: Nazar Kazakov <nazar.kazakov@codethink.co.uk> Signed-off-by: Lawrence Hunter <lawrence.hunter@codethink.co.uk> Signed-off-by: Max Chou <max.chou@sifive.com> [max.chou@sifive.com: Exposed x-zvbc property] Message-ID: <20230711165917.2629866-5-max.chou@sifive.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
- Loading branch information
1 parent
0cd508b
commit 87afa07
Showing
8 changed files
with
146 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| /* | ||
| * RISC-V translation routines for the vector crypto extension. | ||
| * | ||
| * Copyright (C) 2023 SiFive, Inc. | ||
| * Written by Codethink Ltd and SiFive. | ||
| * | ||
| * This program is free software; you can redistribute it and/or modify it | ||
| * under the terms and conditions of the GNU General Public License, | ||
| * version 2 or later, as published by the Free Software Foundation. | ||
| * | ||
| * This program is distributed in the hope it will be useful, but WITHOUT | ||
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| * more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License along with | ||
| * this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| /* | ||
| * Zvbc | ||
| */ | ||
|
|
||
| #define GEN_VV_MASKED_TRANS(NAME, CHECK) \ | ||
| static bool trans_##NAME(DisasContext *s, arg_rmrr *a) \ | ||
| { \ | ||
| if (CHECK(s, a)) { \ | ||
| return opivv_trans(a->rd, a->rs1, a->rs2, a->vm, \ | ||
| gen_helper_##NAME, s); \ | ||
| } \ | ||
| return false; \ | ||
| } | ||
|
|
||
| static bool vclmul_vv_check(DisasContext *s, arg_rmrr *a) | ||
| { | ||
| return opivv_check(s, a) && | ||
| s->cfg_ptr->ext_zvbc == true && | ||
| s->sew == MO_64; | ||
| } | ||
|
|
||
| GEN_VV_MASKED_TRANS(vclmul_vv, vclmul_vv_check) | ||
| GEN_VV_MASKED_TRANS(vclmulh_vv, vclmul_vv_check) | ||
|
|
||
| #define GEN_VX_MASKED_TRANS(NAME, CHECK) \ | ||
| static bool trans_##NAME(DisasContext *s, arg_rmrr *a) \ | ||
| { \ | ||
| if (CHECK(s, a)) { \ | ||
| return opivx_trans(a->rd, a->rs1, a->rs2, a->vm, \ | ||
| gen_helper_##NAME, s); \ | ||
| } \ | ||
| return false; \ | ||
| } | ||
|
|
||
| static bool vclmul_vx_check(DisasContext *s, arg_rmrr *a) | ||
| { | ||
| return opivx_check(s, a) && | ||
| s->cfg_ptr->ext_zvbc == true && | ||
| s->sew == MO_64; | ||
| } | ||
|
|
||
| GEN_VX_MASKED_TRANS(vclmul_vx, vclmul_vx_check) | ||
| GEN_VX_MASKED_TRANS(vclmulh_vx, vclmul_vx_check) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| /* | ||
| * RISC-V Vector Crypto Extension Helpers for QEMU. | ||
| * | ||
| * Copyright (C) 2023 SiFive, Inc. | ||
| * Written by Codethink Ltd and SiFive. | ||
| * | ||
| * This program is free software; you can redistribute it and/or modify it | ||
| * under the terms and conditions of the GNU General Public License, | ||
| * version 2 or later, as published by the Free Software Foundation. | ||
| * | ||
| * This program is distributed in the hope it will be useful, but WITHOUT | ||
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| * more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License along with | ||
| * this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #include "qemu/osdep.h" | ||
| #include "qemu/host-utils.h" | ||
| #include "qemu/bitops.h" | ||
| #include "cpu.h" | ||
| #include "exec/memop.h" | ||
| #include "exec/exec-all.h" | ||
| #include "exec/helper-proto.h" | ||
| #include "internals.h" | ||
| #include "vector_internals.h" | ||
|
|
||
| static uint64_t clmul64(uint64_t y, uint64_t x) | ||
| { | ||
| uint64_t result = 0; | ||
| for (int j = 63; j >= 0; j--) { | ||
| if ((y >> j) & 1) { | ||
| result ^= (x << j); | ||
| } | ||
| } | ||
| return result; | ||
| } | ||
|
|
||
| static uint64_t clmulh64(uint64_t y, uint64_t x) | ||
| { | ||
| uint64_t result = 0; | ||
| for (int j = 63; j >= 1; j--) { | ||
| if ((y >> j) & 1) { | ||
| result ^= (x >> (64 - j)); | ||
| } | ||
| } | ||
| return result; | ||
| } | ||
|
|
||
| RVVCALL(OPIVV2, vclmul_vv, OP_UUU_D, H8, H8, H8, clmul64) | ||
| GEN_VEXT_VV(vclmul_vv, 8) | ||
| RVVCALL(OPIVX2, vclmul_vx, OP_UUU_D, H8, H8, clmul64) | ||
| GEN_VEXT_VX(vclmul_vx, 8) | ||
| RVVCALL(OPIVV2, vclmulh_vv, OP_UUU_D, H8, H8, H8, clmulh64) | ||
| GEN_VEXT_VV(vclmulh_vv, 8) | ||
| RVVCALL(OPIVX2, vclmulh_vx, OP_UUU_D, H8, H8, clmulh64) | ||
| GEN_VEXT_VX(vclmulh_vx, 8) |