In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article will explain in detail how to set input delay constraints in the development of big data. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.
This is a classical timing analysis model, the upstream chip sends the clock to FPGA, the internal synchronization components can be constrained by create_clock, the external chip sends data to the first level of FPGA through the FPGA port and the flip-flop is constrained by set_input_delay, and the last flip-flop of FPGA is constrained by set_output_delay. The combinational logic from the input port to the output port is constrained by set_max_delay.
In the figure, trace_delay refers to board-level delay, and input delay refers to the time input_delay it takes for the upstream chip clock to send data to FPGA to receive data.
Input_delay = Tco (clock output) + TD (trace delay)
The maximum delay can build the establishment time constraint, and the minimum delay can build the hold time constraint.
Constraints of DDR: sampling data on both rising and falling edges
Set_input_delay 1-min-clock clk [get_ports data_in]
Set_input_delay 2-max-clock clk [get_ports data_in]
Set_input_delay 1-min-clock clk [get_ports data_in]-clock_fall-add_delay (add_delay is required to prevent the statement from overwriting the previous statement)
Set_input_delay 2-max-clock clk [get_ports data_in]-clock_fall-add_delay
Set tco_max 2,0
Set td_max 3.0
Set tco_min 0.0
Set td_min 0.0
Create_clock-name sysclk-period 10 [get_ports clkin] / / create a system clock
Set_input_delay-clock sysclk-max [expr {$tco_max+$td_max}] [get_points din]
Set_input_delay-clock sysclk-min [expr {$tco_min+$td_min}] [get_points din]
This is the end of the article on "how to set input delay constraints in big data's development". I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, please share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.