Notes

从 timing report 中获取 Fmax

参考链接:57304 - Vivado Timing - Where can I find the Fmax in the timing report? (xilinx.com)

The term Fmax can be used in 2 different ways:

  • The maximum frequency a design can run on Hardware in a given implementation = 1/(T-WNS), with WNS positive or negative.
  • The maximum frequency a design can run on a given architecture = 1/(T-WNS), only if WNS<0. The user will have to decrease T and re-run synthesis/implementation until WNS<0. Different strategies might be needed to get the best achievable Fmax.
    T is the target clock period. 
    WNS is the worst negative slack of the clock signal in the Intra-Clock Paths section.

Bugs

Resource utilization : LUT as Logic over-utilized in Top Level Design

错误信息如下

这种情况如果不能更换 target device 的话,只能想办法看下哪个部分资源利用过高来想办法减少了。

net type must be explicitly specified

错误信息如下

需要在错误文件中进行如下声明

1
`default_nettype wire

IO Placement failed due to overutilization

如下图所示提示 IO Ports 资源不足问题
image_1694497596010_0
此时修改 Vivado GUI 下 tools/settings/synthesis/more options,添加如下命令

1
-mode out_of_context

Wrong boolean value

报这个错误没有错误提示信息,网上查找各种相关问题无果,最后经同事提醒错误应该是出在使用公开的 Generic RAM Module 实现时其中 RW_ADDR_COLLISION 参数没有给出默认值,如果按照默认是空的话会报这个错误,所以需要给出一个值,如下图所示
|500
图中代码来自 RAM Single Port (fpgacpu.ca)

xpm_xxx not found

错误信息如下

在我的这边,这个问题出现在 IP Integrator 中添加了 RTL 构成的模块,然后在 generate output 时报错提示。
可能要归属到一类错误而不是单独搜索 xpm_memory_tdpram not found,可行的解决方案是在 tcl console 中运行该命令

1
set_property XPM_LIBRARIES {XPM_CDC XPM_MEMORY XPM_FIFO} [current_project]

至于为什么 xpm 会找不到目前不清楚,可能又是 Vivado 的一个 bug 吧
参考链接:XPM cdc module not found (xilinx.com)