Commit 2ca2b19b authored by Tristan Gingold's avatar Tristan Gingold

wr2rf_vme.vhd: use internal clock to as bootstrap clock

To reduce noise on the clock
parent faeb4d95
......@@ -337,6 +337,8 @@ architecture rtl of wr2rf_vme is
signal rst_clk500m_n : std_logic;
signal rst_clk500m : std_logic;
signal clk_cfgm : std_logic;
signal clk_aux_in : std_logic;
-- Wishbone bus from master
......@@ -748,7 +750,7 @@ begin
inst_BUFGMUX_CTRL : BUFGMUX_CTRL
port map (
O => clk_sys_62m5, -- 1-bit output: Clock output
I0 => clk_dmtd_62m5, -- 1-bit input: Clock input (S=0)
I0 => clk_cfgm, -- 1-bit input: Clock input (S=0)
I1 => clk62m5, -- 1-bit input: Clock input (S=1)
S => clk_sys_select ); -- 1-bit input: Clock select
......@@ -1917,7 +1919,7 @@ begin
)
port map (
CFGCLK => open, -- 1-bit output: Configuration main clock output
CFGMCLK => open, -- 1-bit output: Configuration internal oscillator clock output
CFGMCLK => clk_cfgm, -- 1b out: Configuration internal oscillator clock output
EOS => open, -- 1-bit output: Active high output signal indicating the End Of Startup.
PREQ => open, -- 1-bit output: PROGRAM request to fabric output
CLK => '0', -- 1-bit input: User start-up clock input
......
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