zoukankan      html  css  js  c++  java
  • 时钟管脚设置问题 xilinx ERROR:Place:864

    ERROR:Place:1108 - A clock IOB / BUFGMUX clock component pair have been found
       that are not placed at an optimal clock IOB / BUFGMUX site pair. The clock
       IOB component <Clk_125M> is placed at site <PAD99>. The corresponding BUFG
       component <U_Clk_ctrl/U_2_CLK_SWITCH/U_BUFGMUX> is placed at site
       <BUFGMUX_X2Y12>. There is only a select set of IOBs that can use the fast
       path to the Clocker buffer, and they are not being used. You may want to
       analyze why this problem exists and correct it. If this sub optimal condition
       is acceptable for this design, you may use the CLOCK_DEDICATED_ROUTE
       constraint in the .ucf file to demote this message to a WARNING and allow
       your design to continue. However, the use of this override is highly
       discouraged as it may lead to very poor timing results. It is recommended
       that this error condition be corrected in the design. A list of all the
       COMP.PINs used in this clock placement rule is listed below. These examples
       can be used directly in the .ucf file to override this clock rule.
       < NET "Clk_125M" CLOCK_DEDICATED_ROUTE = FALSE; >

    你在你引脚声明的下面加上这句话 NET "cp" CLOCK_DEDICATED_ROUTE = FALSE; 因为这是时序约束造成的。
    最后的样子是下面:
    NET "i_clk" CLOCK_DEDICATED_ROUTE = FALSE;
    NET "i_clk" LOC = B18;

    ISE编译时遇到的错误,网上也有很多此类的说明

    ERROR:Place:1018 - A clock IOB / clock component pair have been found that are not placed at an optimal clock IOB /
       clock site pair. The clock component <in_BUFGP/BUFG> is placed at site <BUFGMUX_X2Y10>. The IO component <in> is
       placed at site <PAD60>.  This will not allow the use of the fast path between the IO and the Clock buffer. If this
       sub optimal condition is acceptable for this design, you may use the CLOCK_DEDICATED_ROUTE constraint in the .ucf
       file to demote this message to a WARNING and allow your design to continue. However, the use of this override is
       highly discouraged as it may lead to very poor timing results. It is recommended that this error condition be
       corrected in the design. A list of all the COMP.PINs used in this clock placement rule is listed below. These
       examples can be used directly in the .ucf file to override this clock rule.
       < NET "in" CLOCK_DEDICATED_ROUTE = FALSE; >
    该错误在旧版本的ise中可以通过添加环境变量的方法来忽略,在ise12中可以在ucf文件中添加:

    NET "in" CLOCK_DEDICATED_ROUTE = FALSE;

    来忽略此错误,错误形成的原因可能为:

    布板的时候时钟接到了fpga差分时钟的N脚了,单端时钟一定要接到P脚,这样才能使用全局时钟布线资源,保证时钟性能。

  • 相关阅读:
    密码盐 -- 为什么要在密码里加点“盐”
    Linux远程连接ssh工具(FinalShell)xshell替代神器
    模板文件不存在,无法解析文档”的几种解决办法
    9个PNG透明图片免费下载网站推荐
    我最近买的书里面带的CD盘,放电脑里后,说是0字节,但是可以播放,不能把里面的东西复制出来
    ASP程序加密/解密方法大揭密
    最稳定万能vip视频解析接口 支持HTTPS
    pycharm安装pyinstaller将pygame打包成exe
    Arduino101学习笔记(六)—— 高级IO
    Arduino101学习笔记(五)—— 模拟IO
  • 原文地址:https://www.cnblogs.com/lsjjob/p/5247219.html
Copyright © 2011-2022 走看看