[prim_ram_2p_adv] Pass through MemInitFile parameter
This parameter can be used to specify the VMEM file to initialize the
memory with. Pass it through to the underlying RAM primitive to enable
easier switching between prim_ram_2p and prim_ram_2p_adv.
Signed-off-by: Philipp Wagner <phw@lowrisc.org>
diff --git a/hw/ip/prim/rtl/prim_ram_2p_adv.sv b/hw/ip/prim/rtl/prim_ram_2p_adv.sv
index 7f79f66..4fc1b72 100644
--- a/hw/ip/prim/rtl/prim_ram_2p_adv.sv
+++ b/hw/ip/prim/rtl/prim_ram_2p_adv.sv
@@ -20,6 +20,7 @@
parameter int Depth = 512,
parameter int Width = 32,
parameter int CfgW = 8, // WTC, RTC, etc
+ parameter MemInitFile = "", // VMEM file to initialize the memory with
// Configurations
parameter bit EnableECC = 0,
@@ -92,7 +93,8 @@
.Width (TotalWidth),
.Depth (Depth),
- .DataBitsPerMask (TotalWidth)
+ .DataBitsPerMask (TotalWidth),
+ .MemInitFile (MemInitFile)
) u_mem (
.clk_a_i (clk_i),
.clk_b_i (clk_i),
@@ -116,7 +118,8 @@
prim_ram_2p #(
.Width (TotalWidth),
.Depth (Depth),
- .DataBitsPerMask (TotalWidth)
+ .DataBitsPerMask (TotalWidth),
+ .MemInitFile (MemInitFile)
) u_mem (
.clk_a_i (clk_i),
.clk_b_i (clk_i),