Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Bender.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ packages:
dependencies:
- common_cells
common_cells:
revision: c27bce39ebb2e6bae52f60960814a2afca7bd4cb
version: 1.37.0
revision: c439813c28dda0d6b74e9b72539c546c9c15c5ae
version: null
source:
Git: https://github.com/pulp-platform/common_cells.git
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion Bender.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package:
- "Michael Rogenmoser <michaero@iis.ee.ethz.ch>"

dependencies:
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.37.0 }
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", rev: c439813c28dda0d6b74e9b72539c546c9c15c5ae }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.2.13 }
cluster_interconnect: { git: "https://github.com/pulp-platform/cluster_interconnect.git", version: 1.2.1 }
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.39.4 }
Expand Down
9 changes: 5 additions & 4 deletions test/synth/axi_memory_island_synth.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
module axi_memory_island_synth #(
localparam int unsigned AddrWidth = 32,
localparam int unsigned NarrowDataWidth = 32,
localparam int unsigned WideDataWidth = 512,
localparam int unsigned WideDataWidth = 256,

localparam int unsigned AxiIdWidth = 3,
localparam int unsigned AxiIdWidth = 2,

localparam int unsigned NumNarrowReq = 5,
localparam int unsigned NumNarrowReq = 6,
localparam int unsigned NumWideReq = 4,
localparam int unsigned WordsPerBank = 8192
localparam int unsigned WordsPerBank = 2048
) (
input logic clk_i,
input logic rst_ni,
Expand Down Expand Up @@ -280,6 +280,7 @@ module axi_memory_island_synth #(
.NumNarrowReq ( NumNarrowReq ),
.NumWideReq ( NumWideReq ),
.WordsPerBank ( WordsPerBank ),
.NumWideBanks (4),
.SpillNarrowReqEntry (0),
.SpillNarrowRspEntry (0),
.SpillNarrowReqRouted(0),
Expand Down