Skip to content

Commit

Permalink
Remove ss_dbg_prod_enable output bit
Browse files Browse the repository at this point in the history
  • Loading branch information
calebofearth committed Nov 19, 2024
1 parent 4f51abf commit 9f6b72e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/integration/rtl/caliptra_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ module caliptra_top

// Subsystem mode debug outputs
output logic ss_dbg_manuf_enable,
output logic ss_dbg_prod_enable,
output logic [63:0] ss_soc_dbg_unlock_level,

// Subsystem mode firmware execution control
Expand Down Expand Up @@ -1264,7 +1263,6 @@ soc_ifc_top1
.cptra_ss_debug_intent (cptra_ss_debug_intent ),
// Subsystem mode debug outputs
.ss_dbg_manuf_enable (ss_dbg_manuf_enable ),
.ss_dbg_prod_enable (ss_dbg_prod_enable ),
.ss_soc_dbg_unlock_level(ss_soc_dbg_unlock_level),

// Subsystem mode firmware execution control
Expand Down
1 change: 0 additions & 1 deletion src/integration/tb/caliptra_top_tb.sv
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ caliptra_top caliptra_top_dut (

// Subsystem mode debug outputs
.ss_dbg_manuf_enable (/*TODO*/),
.ss_dbg_prod_enable (/*TODO*/),
.ss_soc_dbg_unlock_level(/*TODO*/),

// Subsystem mode firmware execution control
Expand Down
2 changes: 0 additions & 2 deletions src/soc_ifc/rtl/soc_ifc_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ module soc_ifc_top

// Subsystem mode debug outputs
output logic ss_dbg_manuf_enable,
output logic ss_dbg_prod_enable,
output logic [63:0] ss_soc_dbg_unlock_level,

// Subsystem mode firmware execution control
Expand Down Expand Up @@ -846,7 +845,6 @@ always_comb soc_ifc_reg_hwif_in.SS_DBG_MANUF_SERVICE_REG_RSP.UDS_PROGRAM_FAIL
always_comb soc_ifc_reg_hwif_in.SS_DBG_MANUF_SERVICE_REG_RSP.UDS_PROGRAM_IN_PROGRESS .swwe = !soc_ifc_reg_req_data.soc_req; //FIXME

always_comb ss_dbg_manuf_enable = soc_ifc_reg_hwif_out.SS_DBG_MANUF_SERVICE_REG_RSP.MANUF_DBG_UNLOCK_SUCCESS.value;
always_comb ss_dbg_prod_enable = soc_ifc_reg_hwif_out.SS_DBG_MANUF_SERVICE_REG_RSP.PROD_DBG_UNLOCK_SUCCESS.value;

// DEBUG unlock level signal is only writable by Caliptra, and only when DEBUG_INTENT is 1
always_comb begin
Expand Down

0 comments on commit 9f6b72e

Please sign in to comment.