完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,
我正在设计一个需要视频帧缓冲的系统,它可以支持1080p(1920x1080)@ 60Hz和24bpp。 在两个视频入门套件中(对于Spartan 3和6),演示中的最大分辨率为720p(像素速率为74.25 MHz)。 有没有人尝试运行帧缓冲器(VFBC),速度为148.5MHz写入并从同一DDR SDRAM读取? 谢谢, 贝纳 以上来自于谷歌翻译 以下为原文 Hi, I'm designing a system that requires video frame buffer that can support 1080p (1920x1080) @60Hz with 24bpp. In both Video starter kits (for the Spartan 3 and 6) the maximum resolution in the demos is 720p (74.25 MHz pixel rate). Does anybody try to run a frame buffer (VFBC) with speeds of 148.5MHz writing and reading from the same DDR SDRAM? Thanks, Yossi |
|
相关推荐
3个回答
|
|
帧缓冲区需要大约373MB /秒的带宽
1920 * 1080 * 60FPS * 3Bytes /像素 如果你想同时读写,那么加倍到大约750MB /秒。 S6 -2速度等级支持DDR-667。 您需要一个16位宽的DRAM来为全双工帧缓冲提供足够的带宽(加上净空)。 如果读取和写入不重叠,则可以使用1字节宽的DRAM。 你的视频是如何进入芯片的? -2速度等级S6不具有1920x1080p / 60 TMDS(例如DVI或HDMI)所需的ISERDES比特率。 我没有检查-3速度等级与1080p / 60。 - 鲍勃埃尔金德 签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。 阅读手册或用户指南。 你读过手册了吗? 你能找到手册吗?2。 搜索论坛(并搜索网页)以寻找类似的主题。 不要在多个论坛上发布相同的问题。 不要在别人的主题上发布新主题或问题,开始新的主题!5。 学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。 提供有用的详细信息(请与网页,数据表链接).7。 您的代码中的评论不需要支付额外费用。 我没有支付论坛帖子的费用。 如果我写一篇好文章,那么我一无所获。 以上来自于谷歌翻译 以下为原文 You need roughly 373MB/sec bandwidth to your frame buffer 1920 * 1080 * 60FPS * 3Bytes/pixelIf you want to read and write concurrently, double that to around 750MB/sec. S6 -2 speed grade supports DDR-667. You'll need a 16bit wide DRAM to provide enough bandwidth (plus headroom) for a full duplex frame buffer. If read and write are non-overlapping, you could get by with a 1 byte wide DRAM. How is your video coming on-chip? A -2 speed grade S6 doesn't have the ISERDES bit rate required for 1920x1080p/60 TMDS (e.g. DVI or HDMI). I haven't checked on -3 speed grade vs. 1080p/60. - Bob Elkind SIGNATURE: README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369 Summary: 1. Read the manual or user guide. Have you read the manual? Can you find the manual? 2. Search the forums (and search the web) for similar topics. 3. Do not post the same question on multiple forums. 4. Do not post a new topic or question on someone else's thread, start a new thread! 5. Students: Copying code is not the same as learning to design. 6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please). 7. You are not charged extra fees for comments in your code. 8. I am not paid for forum posts. If I write a good post, then I have been good for nothing. |
|
|
|
鲍勃,
谢谢。 视频流为24bit,HS,VS,DE& CLK。 当你说DDR-667你的意思是DDR2 @ 333MHz? 你在哪里获得了“S6 -2速度等级支持DDR-667”的信息? -3会更好吗? 你认为如果我将实现2个内存控制器,一个具有16位DDR和其他8(或16)位DDR,我将100%安全,或者它足以使用一个16位400 MHz DDR2或 DDR3? 干杯, 贝纳 以上来自于谷歌翻译 以下为原文 Bob, Thank you. The video is streamed as 24bit, HS, VS, DE & CLK. When you say DDR-667 you mean DDR2 @ 333MHz? Where did you got the info that the "S6 -2 speed grade supports DDR-667"? does -3 will be even better? Do you think that if I'll implement 2 memory controllers, one with 16 bit DDR and the other 8 (or 16) bits DDR i'll be 100% safe or it'll be enough to use one 16 bit 400 MHz DDR2 or DDR3? Cheers, Yossi |
|
|
|
当你说DDR-667你的意思是DDR2 @ 333MHz?
是的,我的意思是编写DDR2-667,它使用带有DDR数据信号的333MHz时钟 你在哪里得到的信息“S6 -2速度等级支持DDR-667? 查看数据表,doc DS162。 在-2速度等级上需要扩展VCCint以支持DDR2-667。 -3会更好吗? -3速度等级支持高达DDR2-800,具有扩展的VCCint 你认为如果我将实现2个内存控制器,一个具有16位DDR和其他8(或16)位DDR,我将100%安全,或者它足以使用一个16位400 MHz DDR2或 DDR3? 您没有充分描述您的设计要求,以给您一个权威的答案。 你应该自己做计算,这是一个非常简单的决定。 首先要弄清楚你需要多少并发数据带宽。 如果一个内存控制器满足您的需求,您不应该尝试使用两个 - 这将为您的设计增加相当大的复杂性。 - 鲍勃 签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。 阅读手册或用户指南。 你读过手册了吗? 你能找到手册吗?2。 搜索论坛(并搜索网页)以寻找类似的主题。 不要在多个论坛上发布相同的问题。 不要在别人的主题上发布新主题或问题,开始新的主题!5。 学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。 提供有用的详细信息(请与网页,数据表链接).7。 您的代码中的评论不需要支付额外费用。 我没有支付论坛帖子的费用。 如果我写一篇好文章,那么我一无所获。 以上来自于谷歌翻译 以下为原文 When you say DDR-667 you mean DDR2 @ 333MHz? Yes, I meant to write DDR2-667, which uses a 333MHz clock with DDR data signalingWhere did you got the info that the "S6 -2 speed grade supports DDR-667? Check the datasheet, doc DS162. Requires extended VCCint for DDR2-667 support on -2 speed grade.does -3 will be even better? -3 speed grade supports up to DDR2-800, with extended VCCintDo you think that if I'll implement 2 memory controllers, one with 16 bit DDR and the other 8 (or 16) bits DDR i'll be 100% safe or it'll be enough to use one 16 bit 400 MHz DDR2 or DDR3? You haven't described your design requirements sufficiently to give you an authoritative answer. You should do the calculations yourself, it's a pretty simple decision. First figure out how much concurrent data bandwidth you need. If one memory controller meets your needs, you shouldn't attempt to use two -- this will add considerable complexity to your design.- Bob SIGNATURE: README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369 Summary: 1. Read the manual or user guide. Have you read the manual? Can you find the manual? 2. Search the forums (and search the web) for similar topics. 3. Do not post the same question on multiple forums. 4. Do not post a new topic or question on someone else's thread, start a new thread! 5. Students: Copying code is not the same as learning to design. 6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please). 7. You are not charged extra fees for comments in your code. 8. I am not paid for forum posts. If I write a good post, then I have been good for nothing. |
|
|
|
只有小组成员才能发言,加入小组>>
2415 浏览 7 评论
2821 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2292 浏览 9 评论
3372 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2458 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
1079浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
579浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
438浏览 1评论
2000浏览 0评论
723浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-20 05:33 , Processed in 1.250016 second(s), Total 82, Slave 66 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号