diff --git a/rtl/ibex_core.sv b/rtl/ibex_core.sv index 79ab576b..57bd80bc 100644 --- a/rtl/ibex_core.sv +++ b/rtl/ibex_core.sv @@ -391,7 +391,7 @@ module ibex_core #( // main clock gate of the core // generates all clocks except the one for the debug unit which is // independent - cluster_clock_gating core_clock_gate_i ( + tc_clk_gating core_clock_gate_i ( .clk_i ( clk_i ), .en_i ( clock_en ), .test_en_i ( test_en_i ), diff --git a/rtl/ibex_register_file_latch.sv b/rtl/ibex_register_file_latch.sv index 4b5816d5..3fa38672 100644 --- a/rtl/ibex_register_file_latch.sv +++ b/rtl/ibex_register_file_latch.sv @@ -67,7 +67,7 @@ module ibex_register_file_latch #( // WRITE // /////////// // Global clock gating - cluster_clock_gating cg_we_global ( + tc_clk_gating cg_we_global ( .clk_i ( clk_i ), .en_i ( we_a_i ), .test_en_i ( test_en_i ), @@ -99,7 +99,7 @@ module ibex_register_file_latch #( // Individual clock gating (if integrated clock-gating cells are available) for (genvar x = 1; x < NUM_WORDS; x++) begin : gen_cg_word_iter - cluster_clock_gating cg_i ( + tc_clk_gating cg_i ( .clk_i ( clk_int ), .en_i ( waddr_onehot_a[x] ), .test_en_i ( test_en_i ), @@ -129,7 +129,7 @@ module ibex_register_file_latch #( assign we_r0_dummy = we_a_i & dummy_instr_id_i; // R0 clock gate - cluster_clock_gating cg_i ( + tc_clk_gating cg_i ( .clk_i ( clk_int ), .en_i ( we_r0_dummy ), .test_en_i ( test_en_i ),