Skip to content
Snippets Groups Projects
Commit 7933fe54 authored by Pepping's avatar Pepping
Browse files

Replaced port types

parent 34e73b1c
Branches
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
-- --
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
LIBRARY IEEE, common_lib, unb1_board_lib, dp_lib, io_ddr_lib, eth_lib, technology_lib, tech_ddr_lib, diag_lib, reorder_lib; LIBRARY IEEE, common_lib, unb1_board_lib, dp_lib, eth_lib, technology_lib, tech_ddr_lib, diag_lib, reorder_lib;
USE IEEE.STD_LOGIC_1164.ALL; USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.NUMERIC_STD.ALL; USE IEEE.NUMERIC_STD.ALL;
USE common_lib.common_pkg.ALL; USE common_lib.common_pkg.ALL;
...@@ -31,7 +31,7 @@ USE technology_lib.technology_select_pkg.ALL; ...@@ -31,7 +31,7 @@ USE technology_lib.technology_select_pkg.ALL;
USE tech_ddr_lib.tech_ddr_pkg.ALL; USE tech_ddr_lib.tech_ddr_pkg.ALL;
USE eth_lib.eth_pkg.ALL; USE eth_lib.eth_pkg.ALL;
USE diag_lib.diag_pkg.ALL; USE diag_lib.diag_pkg.ALL;
USE reorder_lib.reorder_pkg.ALL; USE reorder_lib.reorder_pkg.ALL;
ENTITY unb1_reorder IS ENTITY unb1_reorder IS
GENERIC ( GENERIC (
...@@ -69,9 +69,13 @@ ENTITY unb1_reorder IS ...@@ -69,9 +69,13 @@ ENTITY unb1_reorder IS
ETH_SGOUT : OUT STD_LOGIC; ETH_SGOUT : OUT STD_LOGIC;
-- SO-DIMM Memory Bank I -- SO-DIMM Memory Bank I
MB_I_IN : IN t_tech_ddr_phy_in_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0); -- MB_I_IN : IN t_tech_ddr_phy_in_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_IO : INOUT t_tech_ddr_phy_io_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0); -- MB_I_IO : INOUT t_tech_ddr_phy_io_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_OU : OUT t_tech_ddr_phy_ou_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0) -- MB_I_OU : OUT t_tech_ddr_phy_ou_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0)
MB_I_IN : IN t_tech_ddr3_phy_in_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_IO : INOUT t_tech_ddr3_phy_io_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0);
MB_I_OU : OUT t_tech_ddr3_phy_ou_arr(sel_a_b(g_sim, 1, g_use_MB_I) -1 DOWNTO 0)
); );
END unb1_reorder; END unb1_reorder;
...@@ -81,7 +85,7 @@ ARCHITECTURE str OF unb1_reorder IS ...@@ -81,7 +85,7 @@ ARCHITECTURE str OF unb1_reorder IS
-- Constant definitions for ctrl_unb_common -- Constant definitions for ctrl_unb_common
CONSTANT c_design_name : STRING := "unb1_reorder"; CONSTANT c_design_name : STRING := "unb1_reorder";
CONSTANT c_design_note : STRING := "Reference Reorder"; CONSTANT c_design_note : STRING := "Reference Reorder";
CONSTANT c_fw_version : t_unb1_board_fw_version := (0, 8); -- firmware version x.y CONSTANT c_fw_version : t_unb1_board_fw_version := (0, 10); -- firmware version x.y
CONSTANT c_use_phy : t_c_unb1_board_use_phy := (1, 0, 0, 0, 1, 0, 0, 1); CONSTANT c_use_phy : t_c_unb1_board_use_phy := (1, 0, 0, 0, 1, 0, 0, 1);
CONSTANT c_aux : t_c_unb1_board_aux := c_unb1_board_aux; CONSTANT c_aux : t_c_unb1_board_aux := c_unb1_board_aux;
CONSTANT c_app_led_en : BOOLEAN := TRUE; CONSTANT c_app_led_en : BOOLEAN := TRUE;
...@@ -450,7 +454,7 @@ BEGIN ...@@ -450,7 +454,7 @@ BEGIN
GENERIC MAP( GENERIC MAP(
g_sim => g_sim, g_sim => g_sim,
g_use_MB_I => g_use_MB_I, g_use_MB_I => g_use_MB_I,
g_tech_ddr => g_tech_ddr, -- g_tech_ddr => g_tech_ddr,
g_nof_streams => c_nof_streams, g_nof_streams => c_nof_streams,
g_in_dat_w => c_in_dat_w, g_in_dat_w => c_in_dat_w,
g_ena_pre_transp => c_ena_pre_transp, g_ena_pre_transp => c_ena_pre_transp,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment