今天在创建工程时,由于只是一个测试用的工程,给时钟信号分配管脚时只是简单的使用了普通的IO管脚,在实现时报了以下错误
[Place 30-574] Poor placement for routing between an IO pin and BUFG. If this sub optimal condition is acceptable for this design, you may use the CLOCK_DEDICATED_ROUTE constraint in the .xdc file to demote this message to a WARNING. However, the use of this override is highly discouraged. These examples can be used directly in the .xdc file to override this clock rule.
< set_property CLOCK_DEDICATED_ROUTE FALSE [get_nets I_clk_IBUF] >
I_clk_IBUF_inst (IBUF.O) is locked to IOB_X0Y45
and I_clk_IBUF_BUFG_inst (BUFG.I) is provisionally placed by clockplacer on BUFGCTRL_X0Y0
报错原因为,编译器在综合时会自动的为工程中的时钟信号生成一个全局时钟BUF,然后如果管脚分配将这个BUFG连接到普通管脚上,就会报以上错误。
但如果仔细看一下报错信息:
If this sub optimal condition is acceptable for this design, you may use the CLOCK_DEDICATED_ROUTE constraint in the .xdc file to demote this message to a WARNING
如果这种次优条件对于设计是可以接受的,那么可以使用.xdc文件中的CLOCK_DEDICATED_ROUTE约束将此消息降级为WARNING文章来源:https://www.toymoban.com/news/detail-506736.html
就会发现即使你坚持使用IO管脚做为全局时钟管脚,这个错误也并不是不能消除的,可以使用CLOCK_DEDICATED_ROUTE约束来将这种错误降级为WARNING,并且它给出了具体的解决方法,即在xdc文件中增加以下约束:
set_property CLOCK_DEDICATED_ROUTE FALSE [get_nets I_clk_IBUF]
重新实现,就不会再报错了。文章来源地址https://www.toymoban.com/news/detail-506736.html
到了这里,关于【Vivado】 [Place 30-574] 时钟使用普通IO时的报错解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!