AR# 59517

|

MIG 7 Series - Running example design produces [Constraints 18-402] warnings due to invalid startpoints

描述

Version Found: MIG 7 Series v2.0 Rev 2
Version Resolved: See (Xilinx Answer 54025)

When running the MIG 7 Series example design, the following warning messages may be displayed:

[Constraints 18-402] set_max_delay: 'u_mig_7series_1/u_mig_7series_1_mig/temp_mon_enabled.u_tempmon/device_temp_r[9]_i_1' is not a valid startpoint. 
["../mig_7series_1_example/mig_7series_1_example/mig_7series_1_example.srcs/sources_1/ip/mig_7series_1/mig_7series_1/user_design/constraints/mig_7series_1.xdc":329]

解决方案

This is a known issue as a result of an invalid filter set on the set_max_delay constraint.

The XDC command referenced in the above warning is:

set_max_delay -datapath_only -from [get_cells -hier -filter {NAME =~ *temp_mon_enabled.u_tempmon/*}] -to [get_cells -hier -filter {NAME =~ *temp_mon_enabled.u_tempmon/device_temp_sync_r1*}] 20

This set_max_delay has wildcards that are including LUTs in the startpoint list.

The get_cells associated with the "-from" portion of the above constraint needs the "IS_SEQUENTIAL" filter added to avoid this.

set_max_delay -datapath_only -from [get_cells -hier -filter {IS_SEQUENTIAL && NAME =~ *temp_mon_enabled.u_tempmon/*}] -to [get_cells -hier -filter {NAME =~ *temp_mon_enabled.u_tempmon/device_temp_sync_r1*}] 20

or

set_max_delay -datapath_only -from [get_cells -hier -filter {IS_SEQUENTIAL == TRUE && NAME =~ *temp_mon_enabled.u_tempmon/*}] -to [get_cells -hier -filter {NAME =~ *temp_mon_enabled.u_tempmon/device_temp_sync_r1*}] 20



Revision History
03/04/2014 - Initial release

链接问答记录

主要问答记录

Answer Number 问答标题 问题版本 已解决问题的版本
54025 MIG 7 Series - IP Release Notes and Known Issues for Vivado N/A N/A
AR# 59517
日期 05/07/2014
状态 Active
Type 已知问题
Tools
IP
People Also Viewed