Skip to content
Snippets Groups Projects
Commit d871b584 authored by Zanting's avatar Zanting
Browse files

Changed generics of io_ddr_diag entity to match changes

parent e587e420
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ ARCHITECTURE str OF node_unb1_ddr3 IS
CONSTANT c_rd_data_w : NATURAL := g_st_dat_w;
CONSTANT c_data_w : NATURAL := g_st_dat_w;
CONSTANT c_wr_fifo_depth : NATURAL := 128; -- >=16 , defined at DDR side of the FIFO.
CONSTANT c_wr_fifo_depth : NATURAL := 1024; -- >=16 , defined at DDR side of the FIFO.
CONSTANT c_rd_fifo_depth : NATURAL := 1024; -- >=16 AND >g_tech_ddr.maxburstsize, defined at DDR side of the FIFO.
CONSTANT c_use_bg : BOOLEAN := FALSE;
......@@ -117,15 +117,16 @@ BEGIN
u_mms_io_ddr_diag : ENTITY io_ddr_lib.mms_io_ddr_diag
GENERIC MAP(
-- System
g_technology => g_technology,
g_dp_data_w => g_st_dat_w,
g_dp_seq_dat_w => c_seq_dat_w,
g_dp_fifo_depth => c_rd_fifo_depth,
g_technology => g_technology,
g_dp_data_w => g_st_dat_w,
g_dp_seq_dat_w => c_seq_dat_w,
g_dp_wr_fifo_depth => c_wr_fifo_depth,
g_dp_rd_fifo_depth => c_rd_fifo_depth,
-- IO_DDR
g_io_tech_ddr => g_tech_ddr,
g_io_tech_ddr => g_tech_ddr,
-- DIAG data buffer
g_db_use_db => c_use_db,
g_db_buf_nof_data => c_buf_nof_data
g_db_use_db => c_use_db,
g_db_buf_nof_data => c_buf_nof_data
)
PORT MAP(
---------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment