Commit 85dd1047 authored by Mattia Rizzi's avatar Mattia Rizzi Committed by Grzegorz Daniluk

Added a powerdown line to shutdown the noisy MMCMs when external PLL is detected

parent 98089675
......@@ -79,6 +79,7 @@ port
clk_ext_mul_o : out std_logic;
-- Status and control signals
rst_a_i : in std_logic;
powerdown_i : in std_logic;
locked_o : out std_logic
);
end ext_pll_100_to_62m;
......@@ -178,7 +179,7 @@ begin
LOCKED => locked_o,
CLKINSTOPPED => clkinstopped_unused,
CLKFBSTOPPED => clkfbstopped_unused,
PWRDWN => '0',
PWRDWN => powerdown_i,
RST => rst_a_i);
-- Output buffering
......
......@@ -79,6 +79,7 @@ port
clk_ext_100_o : out std_logic;
-- Status and control signals
rst_a_i : in std_logic;
powerdown_i : in std_logic;
locked_o : out std_logic
);
end ext_pll_10_to_100;
......@@ -178,7 +179,7 @@ begin
LOCKED => locked_o,
CLKINSTOPPED => clkinstopped_unused,
CLKFBSTOPPED => clkfbstopped_unused,
PWRDWN => '0',
PWRDWN => powerdown_i,
RST => rst_a_i);
-- Output buffering
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment