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

in xgmii_mac PLL the power_down input has to be controllable according

to quartus compile
parent 3c89179f
No related branches found
No related tags found
No related merge requests found
...@@ -185,6 +185,7 @@ BEGIN ...@@ -185,6 +185,7 @@ BEGIN
) )
PORT MAP ( PORT MAP (
refclk_644 => tr_ref_clk_644, refclk_644 => tr_ref_clk_644,
rst_in => mm_rst,
clk_156 => tr_ref_clk_156, clk_156 => tr_ref_clk_156,
clk_312 => tr_ref_clk_312, clk_312 => tr_ref_clk_312,
rst_156 => tr_ref_rst_156, rst_156 => tr_ref_rst_156,
......
...@@ -101,6 +101,7 @@ BEGIN ...@@ -101,6 +101,7 @@ BEGIN
) )
PORT MAP ( PORT MAP (
refclk_644 => tr_ref_clk_644, refclk_644 => tr_ref_clk_644,
rst_in => '0',
clk_156 => clk_156, clk_156 => clk_156,
clk_312 => OPEN, clk_312 => OPEN,
rst_156 => rst_156, rst_156 => rst_156,
......
...@@ -229,6 +229,7 @@ BEGIN ...@@ -229,6 +229,7 @@ BEGIN
) )
PORT MAP ( PORT MAP (
refclk_644 => tr_ref_clk_644, refclk_644 => tr_ref_clk_644,
rst_in => mm_rst,
clk_156 => tr_ref_clk_156, clk_156 => tr_ref_clk_156,
clk_312 => tr_ref_clk_312, clk_312 => tr_ref_clk_312,
rst_156 => tr_ref_rst_156, rst_156 => tr_ref_rst_156,
......
...@@ -49,6 +49,7 @@ ENTITY tech_pll_xgmii_mac_clocks IS ...@@ -49,6 +49,7 @@ ENTITY tech_pll_xgmii_mac_clocks IS
); );
PORT ( PORT (
refclk_644 : IN STD_LOGIC; -- 644.53125 MHz reference clock for PLL refclk_644 : IN STD_LOGIC; -- 644.53125 MHz reference clock for PLL
rst_in : IN STD_LOGIC; -- PLL powerdown input, as reset
clk_156 : OUT STD_LOGIC; -- 156.25 MHz PLL output clock clk_156 : OUT STD_LOGIC; -- 156.25 MHz PLL output clock
clk_312 : OUT STD_LOGIC; -- 312.5 MHz PLL output clock clk_312 : OUT STD_LOGIC; -- 312.5 MHz PLL output clock
rst_156 : OUT STD_LOGIC; -- reset in clk_156 domain based on PLL locked rst_156 : OUT STD_LOGIC; -- reset in clk_156 domain based on PLL locked
...@@ -70,7 +71,7 @@ BEGIN ...@@ -70,7 +71,7 @@ BEGIN
u0 : ip_arria10_pll_xgmii_mac_clocks u0 : ip_arria10_pll_xgmii_mac_clocks
PORT MAP ( PORT MAP (
pll_refclk0 => refclk_644, pll_refclk0 => refclk_644,
pll_powerdown => '0', pll_powerdown => rst_in,
pll_locked => pll_locked, pll_locked => pll_locked,
outclk0 => i_clk_156, outclk0 => i_clk_156,
pll_cal_busy => OPEN, pll_cal_busy => OPEN,
......
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