100MHz的输入时钟,经过clock wizard分频一个50MHz的,然后输出到3个IO上供给印制板调试用。HDL顶层文件中定义了3个输出量test、fs_adclk、xw_adclk,利用中间信号f_50MHz分别给3个输出量,综合没问题,实现的时候报错了:
ERROR:Place:1205 - This design contains a global buffer instance,
<gen_freq1/clkout3_buf>, driving the net, <xw_adclk_OBUF>, that is driving
the following (first 30) non-clock load pins off chip.
< PIN: test.O; >
< PIN: fs_adclk.O; >
< PIN: xw_adclk.O; >
This design practice, in Spartan-6, can lead to an unroutable situation due
to limitations in the global routing. If the design does route there may be
excessive delay or skew on this net. It is recommended to use a Clock
Forwarding technique to create a reliable and repeatable low skew solution:
instantiate an ODDR2 component; tie the .D0 pin to Logic1; tie the .D1 pin to
Logic0; tie the clock net to be forwarded to .C0; tie the inverted clock to
.C1. If you wish to override this recommendation, you may use the
CLOCK_DEDICATED_ROUTE constraint (given below) in the .ucf file to demote
this message to a WARNING and allow your design to continue. Although the net
may still not route, you will be able to analyze the failure in FPGA_Editor.
< PIN "gen_freq1/clkout3_buf.O" CLOCK_DEDICATED_ROUTE = FALSE; >
以下是芯片型号和软件:
spartan-6: xc6sl150
ISE version : 13.3
请高手们指点,谢谢! |