Skip to content
Snippets Groups Projects
Commit 7836a9f3 authored by vladimir.sidorenko's avatar vladimir.sidorenko
Browse files

Added Tx word clock to the port

parent fe92d583
No related branches found
No related tags found
1 merge request!4TFC-related update
......@@ -47,6 +47,7 @@ entity gbt_fpga_common is
frame_clk_i : in std_logic;
rxwordclk_o : out std_logic_vector(NUM_LINKS-1 downto 0);
txwordclk_o : out std_logic_vector(NUM_LINKS-1 downto 0);
-- reference clocks for the MGT
-- must be 120 MHz
......@@ -257,8 +258,9 @@ begin --========#### Architecture Body ####========--
--=================================================================================================--
-- Reverse the order of signals in the vector
rxwordclk_rev_gen: for i in 0 to NUM_LINKS-1 generate
wordClk_Inv_gen: for i in 0 to NUM_LINKS-1 generate
rxwordclk_o(i) <= mgt_rxwordclk_s(NUM_LINKS-i);
txwordclk_o(i) <= mgt_txwordclk_s(NUM_LINKS-i);
end generate;
-- according to gbtxManual
......
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