Skip to content

Commit

Permalink
Update cluster_clock_gating to tech cell tc_clk_gating
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jan 22, 2021
1 parent e710319 commit fe0eccf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion rtl/basic/hwpe_stream_buffer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module hwpe_stream_buffer #(

logic clk_gated;

cluster_clock_gating i_cg (
tc_clk_gating i_cg (
.clk_o ( clk_gated ),
.en_i ( pop_o.ready | clear_i ),
.test_en_i ( test_mode_i ),
Expand Down
2 changes: 1 addition & 1 deletion rtl/basic/hwpe_stream_deserialize.sv
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ module hwpe_stream_deserialize #(

logic [$clog2(NB_OUT_STREAMS)-1:0] stream_cnt_d, stream_cnt_q;
logic [$clog2(CONTIG_LIMIT)-1:0] contig_cnt_d, contig_cnt_q;
logic stream_cnt_en;
logic stream_cnt_en;
logic [NB_OUT_STREAMS-1:0] pop_ready;

// stream serialization
Expand Down
4 changes: 2 additions & 2 deletions rtl/fifo/hwpe_stream_fifo_scm.sv
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ module hwpe_stream_fifo_scm
genvar x;
genvar y;

cluster_clock_gating CG_WE_GLOBAL
tc_clk_gating CG_WE_GLOBAL
(
.clk_o(clk_int),
.en_i(WriteEnable),
Expand Down Expand Up @@ -110,7 +110,7 @@ module hwpe_stream_fifo_scm
generate
for(x=0; x<NUM_WORDS; x++)
begin : CG_CELL_WORD_ITER
cluster_clock_gating CG_Inst
tc_clk_gating CG_Inst
(
.clk_o(ClocksxC[x]),
.en_i(WAddrOneHotxD[x]),
Expand Down
2 changes: 1 addition & 1 deletion rtl/streamer/hwpe_stream_sink.sv
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ module hwpe_stream_sink

/* clock gating */
assign clk_realign_en = flags_o.addressgen_flags.realign_flags.enable;
cluster_clock_gating i_realign_gating (
tc_clk_gating i_realign_gating (
.clk_i ( clk_i ),
.test_en_i ( test_mode_i ),
.en_i ( clk_realign_en ),
Expand Down
2 changes: 1 addition & 1 deletion rtl/streamer/hwpe_stream_source_realign.sv
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ module hwpe_stream_source_realign #(
logic int_last_packet;

/* clock gating */
cluster_clock_gating i_realign_gating (
tc_clk_gating i_realign_gating (
.clk_i ( clk_i ),
.test_en_i ( test_mode_i ),
.en_i ( ctrl_i.enable ),
Expand Down

0 comments on commit fe0eccf

Please sign in to comment.