Skip to content

Commit

Permalink
hw: Revert alias region regression
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Feb 21, 2024
1 parent 3dc6e51 commit 3c01577
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion hw/snitch_cluster/src/snitch_cluster.sv
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,9 @@ module snitch_cluster
.TCDMAddrWidth (TCDMAddrWidth),
.CaqDepth (CaqDepth),
.CaqTagWidth (CaqTagWidth),
.DebugSupport (DebugSupport)
.DebugSupport (DebugSupport),
.TCDMAliasEnable (AliasRegionEnable),
.TCDMAliasStart (TCDMAliasStart)
) i_snitch_cc (
.clk_i,
.clk_d2_i (clk_d2),
Expand Down
4 changes: 3 additions & 1 deletion hw/snitch_cluster/src/snitch_cluster_wrapper.sv.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,9 @@ module ${cfg['name']}_wrapper (
.sram_cfgs_t (${cfg['pkg_name']}::sram_cfgs_t),
.CaqDepth (${int(cfg['caq_depth'])}),
.CaqTagWidth (${int(cfg['caq_tag_width'])}),
.DebugSupport (${int(cfg['enable_debug'])})
.DebugSupport (${int(cfg['enable_debug'])}),
.AliasRegionEnable (${int(cfg['alias_region_enable'])}),
.AliasRegionBase (${int(cfg['alias_region_base'])})
) i_cluster (
.clk_i,
.rst_ni,
Expand Down

0 comments on commit 3c01577

Please sign in to comment.