Skip to content

Commit

Permalink
Tied to zero all inputs at the TUE interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Lore0599 committed Feb 2, 2025
1 parent bcad5d5 commit c8159c5
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion hw/chimera_clu_domain.sv
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,37 @@ module chimera_clu_domain
);

`ifdef TARGET_TUEDCIM

`ifdef EXCLUDE_TUEDCIM
chimera_cluster_tuedcim #(
.Cfg (Cfg),
.NrCores (`NRCORES(TUEDCIMIDX)),
.narrow_in_req_t (narrow_in_req_t),
.narrow_in_resp_t (narrow_in_resp_t),
.narrow_out_req_t (narrow_out_req_t),
.narrow_out_resp_t(narrow_out_resp_t),
.wide_out_req_t (wide_out_req_t),
.wide_out_resp_t (wide_out_resp_t)
) i_chimera_cluster_tuedcim (
.soc_clk_i (1'b0),
.clu_clk_i (1'b0),
.rst_ni (1'b0),
.widemem_bypass_i ('0),
.debug_req_i ('0),
.meip_i ('0),
.mtip_i ('0),
.msip_i ('0),
.hart_base_id_i ('0),
.cluster_base_addr_i('0),
.boot_addr_i ('0),

.narrow_in_req_i ('0),
.narrow_in_resp_o (),
.narrow_out_req_o (),
.narrow_out_resp_i('0),
.wide_out_req_o (),
.wide_out_resp_i ('0)
);
`else
chimera_cluster_tuedcim #(
.Cfg (Cfg),
.NrCores (`NRCORES(TUEDCIMIDX)),
Expand Down Expand Up @@ -85,6 +115,7 @@ module chimera_clu_domain
.wide_out_req_o (wide_out_req_o[TUEDCIMIDX]),
.wide_out_resp_i (wide_out_resp_i[TUEDCIMIDX])
);
`endif

`else

Expand Down

0 comments on commit c8159c5

Please sign in to comment.