UPGRADE YOUR BROWSER
We have detected your current browser version is not the latest one. Xilinx.com uses the latest web technologies to bring you the best online experience possible. Please upgrade to a Xilinx.com supported browser:Chrome, Firefox, Internet Explorer 11, Safari. Thank you!
03-13-2018 06:11 AM
I have LVDS input clock connected to my FPGA (regular IO LVDS input). I also have LVDS output pins connected to external connector. I want to drive the input LVDS clock to the connector. what is the best method of "shorting" the input to the output without adding too much jitter?
03-13-2018 06:35 AM
Hi @asmatia
I believe your objective here is only to forward the clock .Use below chain of primitives
IBUFDS -> BUFG -> MMCM -> ODDR -> OBUFDS.
ODDR is to keeps the duty cycle and provides the best possible path[Assign Logic '1' to D1 and Logic '0' to D2. [This way, the output of the ODDR will generate a high at posedge of the clock and a low at negedge of the clock]
If you are using 7 series device , Please refer to the 7 series FPGA Libraries Guide for description and instantiation of these primitives
For ultrascale device , refer UG974 [UltraScale Architecture Libraries Guide]
------------------------------------------------------------------------------------------------------------------------------------------------------------------
Please reply if you have any queries , Give Kudos and Accept as Solution if you get the resolution of your queries.
------------------------------------------------------------------------------------------------------------------------------------------------------------------
03-13-2018 06:35 AM
Hi @asmatia
I believe your objective here is only to forward the clock .Use below chain of primitives
IBUFDS -> BUFG -> MMCM -> ODDR -> OBUFDS.
ODDR is to keeps the duty cycle and provides the best possible path[Assign Logic '1' to D1 and Logic '0' to D2. [This way, the output of the ODDR will generate a high at posedge of the clock and a low at negedge of the clock]
If you are using 7 series device , Please refer to the 7 series FPGA Libraries Guide for description and instantiation of these primitives
For ultrascale device , refer UG974 [UltraScale Architecture Libraries Guide]
------------------------------------------------------------------------------------------------------------------------------------------------------------------
Please reply if you have any queries , Give Kudos and Accept as Solution if you get the resolution of your queries.
------------------------------------------------------------------------------------------------------------------------------------------------------------------
03-13-2018 06:46 AM
thanks!! very helpfull!!