Skip to content

Commit

Permalink
fixing port list
Browse files Browse the repository at this point in the history
fixed signal name in soc ifc after moving from caliptra top
  • Loading branch information
Nitsirks committed Nov 18, 2024
1 parent cb5faf3 commit 2e4feda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/integration/rtl/caliptra_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1289,8 +1289,7 @@ soc_ifc_top1
//multiple cryptos operating at once, assert fatal error
.crypto_error(crypto_error),
//caliptra uncore jtag ports
.cptra_uncore_dmi_unlocked_reg_en( cptra_uncore_dmi_unlocked_reg_en ),
.cptra_uncore_dmi_locked_reg_en( cptra_uncore_dmi_locked_reg_en ),
.cptra_uncore_dmi_reg_en( cptra_uncore_dmi_reg_en ),
.cptra_uncore_dmi_reg_wr_en( cptra_uncore_dmi_reg_wr_en ),
.cptra_uncore_dmi_reg_rdata( cptra_uncore_dmi_reg_rdata ),
.cptra_uncore_dmi_reg_addr ( cptra_uncore_dmi_reg_addr ),
Expand Down
4 changes: 2 additions & 2 deletions src/soc_ifc/rtl/soc_ifc_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -689,8 +689,8 @@ end

//Uncore registers only open for debug unlock or manufacturing
always_comb cptra_uncore_dmi_unlocked_reg_en = cptra_uncore_dmi_reg_en &
(~(cptra_security_state_Latched.debug_locked) |
(cptra_security_state_Latched.device_lifecycle == DEVICE_MANUFACTURING));
(~(security_state.debug_locked) |
(security_state.device_lifecycle == DEVICE_MANUFACTURING));
//Uncore registers open for all cases
always_comb cptra_uncore_dmi_locked_reg_en = cptra_uncore_dmi_reg_en;

Expand Down

0 comments on commit 2e4feda

Please sign in to comment.