1
完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我在DCM时钟频率方面遇到了一些麻烦。
我创建了两个具有相同时钟输入的相同DCM,我使用这些DCM的clk0输出作为两个相同模块的输入。 但是,当我更改clkfx_multiply或clkfx_divide参数时,有时这会改变clk0的频率。 根据我的理解,这些参数应该只影响clkfx输出。 clk0在仿真中都是相同的,但是当在FPGA上实现时,它们是不同的。 这有什么特别的原因吗? 另外,100Mhz inputclkfx_multiply为9 andclkfx_divide为5并不能给我180Mhz时钟(它在模拟中但不在FPGA上),但是clkfx_multiply为9且clkfx_divide为10(模拟时为90MHz,FPGA上为180Mhz)。 以前有没有人遇到过这些问题? 以上来自于谷歌翻译 以下为原文 I am having some trouble with DCM clock frequencies. I have created two identical DCMs with the same clock input and I am using the clk0 output from these DCMs as the input to two identical modules. However when I change the clkfx_multiply or the clkfx_divide parameters, sometimes this will change the frequency of the clk0 out. From my understanding, these parameters should only affect the clkfx output. Both clk0 are the same in simulation but when implemented on an FPGA, they differ. Is there any particular reason for this? Also with a 100Mhz input clkfx_multiply of 9 and clkfx_divide of 5 does not give me a 180Mhz clock (it does in simulation but not on the FPGA), however clkfx_multiply of 9 and clkfx_divide of 10 does (90MHz in simulation but 180 Mhz on FPGA). Has anyone ever come accross these problems before? |
|
相关推荐
6个回答
|
|
模拟模型可能比模拟模型简单得多
真正的硬件。 鉴于您的硬件结果的奇怪性质 我会检查你的反馈路径是否正确连接。 使 确定你将CLK0送回CLKFB(可能通过BUFG或BUFGMUX) 如果你使用任何DLL输出。 另请查看数据表 部分是为了确保你没有超过任何频率范围。 - Gabor - Gabor 以上来自于谷歌翻译 以下为原文 It's possible that the simulation model is a bit more simple than the real hardware. Given the strange nature of your hardware results I would check that your feedback path is correctly connected. Make sure you're feeding CLK0 back to CLKFB (possibly through a BUFG or BUFGMUX) if you use any of the DLL outputs. Also check the datasheet for your part to make sure you're not exceeding any of the frequency ranges. -- Gabor -- Gabor |
|
|
|
我忘了添加 - 确保时钟反馈来自clk0输出
相同的DCM。 - Gabor - Gabor 以上来自于谷歌翻译 以下为原文 I forgot to add - make sure the clock feedback comes from the clk0 output of the SAME DCM. -- Gabor -- Gabor |
|
|
|
感谢您的回复。
我正在使用XC5VLX50,并且已经将DCM的clk0连接到同一DCM的clkfb输入。 频率范围似乎不是问题,因为当我改变clkfx_divide和clkfx_multiply参数时,我似乎能够设计特定的频率。 即,使用10的M和10的M为180 MHz,而9的M和5的5给出200MHz而不是预期的180MHz(使用100MHz输入clk)。 以上来自于谷歌翻译 以下为原文 Thanks for your reply. I am using the XC5VLX50 and have already connected clk0 of the DCM to the clkfb input of the same DCM. Frequency ranges do not seem to be the problem as when I alter the clkfx_divide and clkfx_multiply parameters, I seem to be able to engineer particular frequencies. i.e. 180 MHz using M of 9 and D of 10 whereas M of 9 and D of 5 gives me 200MHz instead of the expected 180MHz (using a 100MHz input clk). |
|
|
|
您是否在FPGA_EDITOR中检查了您的DCM设置是否已进入NCD?
有三种方法(通用/参数传递,defparam和UCF)我可以想到可以改变DCM设置。 我不知道你是如何改变M和D的价值的。它可能被设置在你不知道的其他地方,这会覆盖你的改变。 干杯, 吉姆 declanwalsh25写道: 感谢您的回复。 我正在使用XC5VLX50,并且已经将DCM的clk0连接到同一DCM的clkfb输入。 频率范围似乎不是问题,因为当我改变clkfx_divide和clkfx_multiply参数时,我似乎能够设计特定的频率。 即,使用10的M和10的M为180 MHz,而9的M和5的5给出200MHz而不是预期的180MHz(使用100MHz输入clk)。 干杯,吉姆 以上来自于谷歌翻译 以下为原文 Did you check in FPGA_EDITOR that your DCM settings made into the NCD? There are three ways (generic/parameter passing, defparam, and UCF) I can think of that can change the DCM settings. I don't know how you change the valuds for M and D. It's possible they are set in other places that you're not aware of, which overrides your changes. Cheers, Jim declanwalsh25 wrote: Cheers, Jim |
|
|
|
是的,在FPGA编辑器中,从.ncd文件中,M值和D值与我在文件中指定的值相同。
戴克澜 以上来自于谷歌翻译 以下为原文 Yes, in the FPGA editor, from the.ncd file, the M value and the D value are the same as what I have assigned in the file. Declan |
|
|
|
您是否使用时钟体系结构向导生成原始DCM设置?
该向导应该阻止您使用在条件下不起作用的设置 你指定。 如果您最初使用的是向导,但随后更改了设置 生成源,然后您可能想要返回向导并仔细检查 新设置不会导致问题。 - Gabor - Gabor 以上来自于谷歌翻译 以下为原文 Did you use the Clock Architecture Wizard to generate the original DCM settings? The wizard should prevent you from using settings that won't work under the conditions you specify. If you originally used the wizard, but then changed settings in the generated sources, then you might want to go back to the wizard and double check that the new settings don't cause problems. -- Gabor -- Gabor |
|
|
|
只有小组成员才能发言,加入小组>>
2416 浏览 7 评论
2821 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2292 浏览 9 评论
3372 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2458 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
1123浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
581浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
447浏览 1评论
2002浏览 0评论
725浏览 0评论
小黑屋| 手机版| Archiver| 德赢Vwin官网 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-22 00:13 , Processed in 1.393053 second(s), Total 86, Slave 70 queries .
Powered by 德赢Vwin官网 网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
德赢Vwin官网 观察
版权所有 © 湖南华秋数字科技有限公司
德赢Vwin官网 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号