Skip to content
Snippets Groups Projects
Commit 5c62b3e8 authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Pass on g_delay_len => g_cross_domain_delay_len.

parent 34f0ad34
No related branches found
No related tags found
No related merge requests found
...@@ -154,6 +154,7 @@ ENTITY io_ddr IS ...@@ -154,6 +154,7 @@ ENTITY io_ddr IS
g_tech_ddr : t_c_tech_ddr; g_tech_ddr : t_c_tech_ddr;
g_sim : BOOLEAN := FALSE; -- when TRUE use internal DDR memory model g_sim : BOOLEAN := FALSE; -- when TRUE use internal DDR memory model
g_cross_domain_dvr_ctlr : BOOLEAN := TRUE; g_cross_domain_dvr_ctlr : BOOLEAN := TRUE;
g_cross_domain_delay_len : NATURAL := c_meta_delay_len;
g_wr_data_w : NATURAL := 32; g_wr_data_w : NATURAL := 32;
g_wr_fifo_depth : NATURAL := 128; -- >=16 , defined at DDR side of the FIFO. g_wr_fifo_depth : NATURAL := 128; -- >=16 , defined at DDR side of the FIFO.
g_rd_fifo_depth : NATURAL := 256; -- >=16 AND >g_tech_ddr.maxburstsize, defined at DDR side of the FIFO. g_rd_fifo_depth : NATURAL := 256; -- >=16 AND >g_tech_ddr.maxburstsize, defined at DDR side of the FIFO.
...@@ -248,7 +249,8 @@ BEGIN ...@@ -248,7 +249,8 @@ BEGIN
u_io_ddr_cross_domain : ENTITY work.io_ddr_cross_domain u_io_ddr_cross_domain : ENTITY work.io_ddr_cross_domain
GENERIC MAP ( GENERIC MAP (
g_cross_domain => g_cross_domain_dvr_ctlr g_cross_domain => g_cross_domain_dvr_ctlr,
g_delay_len => g_cross_domain_delay_len
) )
PORT MAP( PORT MAP(
-- Driver clock domain -- Driver clock domain
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment