Skip to content

Commit

Permalink
Fix naming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Konste11ation authored and IveanEx committed Oct 1, 2024
1 parent 547b2c7 commit 984d77c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hw/occamy/occamy_quadrant_s1_ctrl.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ module ${name}_quadrant_s1_ctrl

tc_clk_gating i_tc_clk_gating_quadrant_cluster_uncore (
.clk_i,
.en_i (reg2hw.clk_ena.en_quad_uncore.q),
.en_i (reg2hw.clk_ena.ena_quad_uncore.q),
.test_en_i (test_mode_i),
.clk_o (clk_quadrant_uncore_o)
);
Expand Down
4 changes: 2 additions & 2 deletions hw/occamy/quadrant_s1_ctrl/occamy_quadrant_s1_reg.hjson.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
// Clock disabled (i.e. gated) by default
fields: [
% for cluster_idx in range(num_clusters):
{bits: "${cluster_idx}:${cluster_idx}", name: "ena_cluster_${cluster_idx}", resval: 0, desc: "Clock gate enable for cluster ${cluster_idx}"}
{bits: "${cluster_idx}:${cluster_idx}", name: "ena_cluster_${cluster_idx}", resval: 0, desc: "Clock gate enable for cluster ${cluster_idx}"},
% endfor
{bits: "${num_clusters}:${num_clusters}", name: "ena_quad_uncore", resval: 0, desc: "Clock gate enable for cluster un-core"},
{bits: "${num_clusters}:${num_clusters}", name: "ena_quad_uncore", resval: 0, desc: "Clock gate enable for cluster un-core"}
],
},
{ name: "RESET_N",
Expand Down

0 comments on commit 984d77c

Please sign in to comment.