Skip to content

Commit

Permalink
fixing merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitsirks committed Oct 31, 2024
1 parent 57070d3 commit 344c406
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/integration/asserts/caliptra_top_sva.sv
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
`define DOE_REG_PATH `DOE_INST_PATH.i_doe_reg
`define SERVICES_PATH `CPTRA_TB_TOP_NAME.tb_services_i
`define SHA512_PATH `CPTRA_TOP_PATH.sha512.sha512_inst
`define MLDSA_PATH `CPTRA_TOP_PATH.mldsa.mldsa_ctrl_inst
`define HMAC_PATH `CPTRA_TOP_PATH.hmac.hmac_inst
`define HMAC_REG_PATH `HMAC_PATH.i_hmac_reg
`define ECC_PATH `CPTRA_TOP_PATH.ecc_top1.ecc_dsa_ctrl_i
Expand All @@ -48,7 +49,6 @@
`define SHA512_MASKED_PATH `CPTRA_TOP_PATH.ecc_top1.ecc_dsa_ctrl_i.ecc_hmac_drbg_interface_i.hmac_drbg_i.HMAC_K.u_sha512_core_h1
`define SOC_IFC_TOP_PATH `CPTRA_TOP_PATH.soc_ifc_top1
`define WDT_PATH `SOC_IFC_TOP_PATH.i_wdt
`define MLDSA_PATH `CPTRA_TOP_PATH.mldsa

`define SVA_RDC_CLK `CPTRA_TOP_PATH.rdc_clk_cg
`define CPTRA_FW_UPD_RST_WINDOW `SOC_IFC_TOP_PATH.i_soc_ifc_boot_fsm.fw_update_rst_window
Expand Down
2 changes: 2 additions & 0 deletions src/integration/rtl/caliptra_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,8 @@ always_comb begin
intr[`VEER_INTR_VEC_SOC_IFC_NOTIF-1] = soc_ifc_notif_intr;
intr[`VEER_INTR_VEC_SHA_ERROR -1] = sha_error_intr;
intr[`VEER_INTR_VEC_SHA_NOTIF -1] = sha_notif_intr;
intr[`VEER_INTR_VEC_MLDSA_ERROR -1] = mldsa_error_intr;
intr[`VEER_INTR_VEC_MLDSA_NOTIF -1] = mldsa_notif_intr;
intr[`VEER_INTR_VEC_AXI_DMA_ERROR-1] = dma_error_intr;
intr[`VEER_INTR_VEC_AXI_DMA_NOTIF-1] = dma_notif_intr;
intr[NUM_INTR-1:`VEER_INTR_VEC_MAX_ASSIGNED] = '0;
Expand Down
1 change: 0 additions & 1 deletion src/sha512/rtl/sha512.sv
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ assign error_intr = hwif_out.intr_block_rf.error_global_intr_r.intr;
assign notif_intr = hwif_out.intr_block_rf.notif_global_intr_r.intr;

//Read Block
always_comb kv_read = '0;
always_comb pv_read = gen_hash_ip ? gen_hash_pv_read :
pcr_hash_extend_ip ? vault_read : '0;
always_comb vault_rd_resp = pv_rd_resp;
Expand Down

0 comments on commit 344c406

Please sign in to comment.