Skip to content
Snippets Groups Projects
Commit c761492f authored by Kenneth Hiemstra's avatar Kenneth Hiemstra
Browse files

added the ETH_CLK config options 25 , 125 MHz

parent f879b694
Branches
No related tags found
No related merge requests found
......@@ -70,18 +70,15 @@ ARCHITECTURE str OF unb2_minimal IS
-- System
SIGNAL cs_sim : STD_LOGIC;
SIGNAL xo_clk25 : STD_LOGIC;
SIGNAL xo_rst25 : STD_LOGIC;
SIGNAL xo_rst25_n : STD_LOGIC;
SIGNAL xo_ethclk : STD_LOGIC;
SIGNAL xo_rst : STD_LOGIC;
SIGNAL xo_rst_n : STD_LOGIC;
SIGNAL mm_clk : STD_LOGIC;
SIGNAL mm_locked : STD_LOGIC;
SIGNAL mm_rst : STD_LOGIC;
SIGNAL st_rst : STD_LOGIC;
SIGNAL st_clk : STD_LOGIC;
SIGNAL epcs_clk : STD_LOGIC;
-- PIOs
SIGNAL pout_wdi : STD_LOGIC;
......@@ -139,29 +136,27 @@ BEGIN
-----------------------------------------------------------------------------
u_ctrl : ENTITY unb2_board_lib.ctrl_unb2_board
GENERIC MAP (
g_sim => g_sim,
g_design_name => g_design_name,
g_design_note => g_design_note,
g_stamp_date => g_stamp_date,
g_stamp_time => g_stamp_time,
g_stamp_svn => g_stamp_svn,
g_fw_version => c_fw_version,
g_mm_clk_freq => c_unb2_board_mm_clk_freq_50M,
g_aux => c_unb2_board_aux
g_sim => g_sim,
g_design_name => g_design_name,
g_design_note => g_design_note,
g_stamp_date => g_stamp_date,
g_stamp_time => g_stamp_time,
g_stamp_svn => g_stamp_svn,
g_fw_version => c_fw_version,
g_mm_clk_freq => c_unb2_board_mm_clk_freq_50M,
g_eth_clk_freq => c_unb2_board_eth_clk_freq_125M,
g_aux => c_unb2_board_aux
)
PORT MAP (
-- Clock an reset signals
cs_sim => cs_sim,
xo_clk25 => xo_clk25,
xo_rst25 => xo_rst25,
xo_rst25_n => xo_rst25_n,
xo_ethclk => xo_ethclk,
xo_rst => xo_rst,
xo_rst_n => xo_rst_n,
mm_clk => mm_clk,
mm_locked => mm_locked,
mm_rst => mm_rst,
epcs_clk => epcs_clk,
dp_rst => st_rst,
dp_clk => st_clk,
dp_pps => OPEN,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment