forked from chipsalliance/caliptra-rtl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 118985: fixed mont mult bug in last reduction found by FPV
- fixed mont mult bug in last reduction found by FPV - fixed last mult reduction coverpoint - added montgomery_tb for corner cases and updated vf files Related work items: #522088
- Loading branch information
1 parent
4fdf169
commit 64a9993
Showing
7 changed files
with
148 additions
and
20 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
+incdir+${CALIPTRA_ROOT}/src/integration/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/libs/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/keyvault/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/pcrvault/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/ecc/tb | ||
+incdir+${CALIPTRA_ROOT}/src/sha512/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/sha512_masked/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/hmac/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/hmac_drbg/rtl | ||
+incdir+${CALIPTRA_ROOT}/src/ecc/rtl | ||
${CALIPTRA_ROOT}/src/integration/rtl/config_defines.svh | ||
${CALIPTRA_ROOT}/src/integration/rtl/caliptra_reg_defines.svh | ||
${CALIPTRA_ROOT}/src/libs/rtl/caliptra_sva.svh | ||
${CALIPTRA_ROOT}/src/libs/rtl/caliptra_macros.svh | ||
${CALIPTRA_ROOT}/src/libs/rtl/caliptra_sram.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/ahb_defines_pkg.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/caliptra_ahb_srom.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/apb_slv_sif.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/ahb_slv_sif.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/caliptra_icg.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/clk_gate.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_defines_pkg.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_macros.svh | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv_defines_pkg.sv | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv_macros.svh | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv_gen_hash.sv | ||
${CALIPTRA_ROOT}/src/ecc/tb/ecc_montgomerymultiplier_tb.sv | ||
${CALIPTRA_ROOT}/src/libs/rtl/ahb_to_reg_adapter.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_reg_pkg.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_reg.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_fsm.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_read_client.sv | ||
${CALIPTRA_ROOT}/src/keyvault/rtl/kv_write_client.sv | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv_reg_pkg.sv | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv_reg.sv | ||
${CALIPTRA_ROOT}/src/pcrvault/rtl/pv.sv | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_reg_pkg.sv | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_params_pkg.sv | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_ctrl.sv | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512.sv | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_core.v | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_h_constants.v | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_k_constants.v | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_w_mem.v | ||
${CALIPTRA_ROOT}/src/sha512/rtl/sha512_reg.sv | ||
${CALIPTRA_ROOT}/src/sha512_masked/rtl/sha512_masked_defines_pkg.sv | ||
${CALIPTRA_ROOT}/src/sha512_masked/rtl/sha512_masked_core.sv | ||
${CALIPTRA_ROOT}/src/sha512_masked/rtl/sha512_masked_lfsr.sv | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac_param_pkg.sv | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac_reg_pkg.sv | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac_ctrl.sv | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac.sv | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac_core.v | ||
${CALIPTRA_ROOT}/src/hmac/rtl/hmac_reg.sv | ||
${CALIPTRA_ROOT}/src/hmac_drbg/rtl/hmac_drbg.sv | ||
${CALIPTRA_ROOT}/src/hmac_drbg/rtl/hmac_drbg_lfsr.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_reg_pkg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_defines_pkg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_params_pkg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_dsa_uop_pkg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pm_uop_pkg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_top.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_reg.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_dsa_ctrl.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_dsa_sequencer.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_scalar_blinding.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_hmac_drbg_interface.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_arith_unit.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pm_ctrl.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pm_sequencer.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_ram_tdp_file.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_fau.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_montgomerymultiplier.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pe_first.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pe.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_pe_final.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_mult_dsp.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_add_sub_mod_alter.sv | ||
${CALIPTRA_ROOT}/src/ecc/rtl/ecc_adder.sv |
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
30 changes: 30 additions & 0 deletions
30
src/ecc/tb/test_vectors/mm_test_vectors_5_key_16_word_4.hex
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,30 @@ | ||
0013 | ||
0d79 | ||
fffb | ||
0d | ||
0000 | ||
0 | ||
0015 | ||
00ff | ||
fff1 | ||
0f | ||
b00c | ||
1 | ||
0026 | ||
e509 | ||
fffb | ||
0d | ||
0000 | ||
2 | ||
c15f | ||
5445 | ||
fff1 | ||
0f | ||
0006 | ||
3 | ||
bfff | ||
2fff | ||
fff1 | ||
0f | ||
002f | ||
4 |