当前位置:   article > 正文

KU FPGA FLASH boot失败debug_fpga固化flash加载失败

fpga固化flash加载失败

 

原因

新板子回来后,测试flash 烧录正常,但是无法BOOT,此时SPI设置为X4模式,使用内部时钟,速度90M。烧录过程不报错,校验也正常。

FLASH理论支持最大速度108M,90M应该还好。另外板卡预留了EMCCLK外部时钟模式,速率100M 也不可行。

此时约束如下:

  1. set_property CONFIG_VOLTAGE 3.3 [current_design]
  2. set_property CFGBVS VCCO [current_design]
  3. set_property BITSTREAM.CONFIG.SPI_BUSWIDTH 4 [current_design]
  4. set_property CONFIG_MODE SPIx4 [current_design]
  5. set_property BITSTREAM.CONFIG.CONFIGRATE 90 [current_design]
  6. #set_property BITSTREAM.CONFIG.EXTMASTERCCLK_EN div-1 [current_design]
  7. set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
  8. set_property BITSTREAM.CONFIG.UNUSEDPIN Pullup [current_design]

分析

90M偏高,尝试降低速率尝试。实际多次测试发现82M以下均正常。不同的器件支持的速度是有差异的,具体参考UG908 https://www.xilinx.com/support/documents/sw_manuals/xilinx2022_1/ug908-vivado-programming-debugging.pdf

SPIX8 模式

实际为了加快boot速度,硬件上支持SPIX8模式,这样实际速度可以提高到原有速度的2倍,从而加快启动过程。这在一些pice 应用上是必要的。

  1. set_property CONFIG_VOLTAGE 3.3 [current_design]
  2. set_property CFGBVS VCCO [current_design]
  3. set_property BITSTREAM.CONFIG.SPI_BUSWIDTH 8 [current_design]
  4. set_property CONFIG_MODE SPIx8 [current_design]
  5. set_property BITSTREAM.CONFIG.CONFIGRATE 82 [current_design]
  6. #set_property BITSTREAM.CONFIG.EXTMASTERCCLK_EN div-1 [current_design]
  7. set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design]
  8. set_property BITSTREAM.CONFIG.UNUSEDPIN Pullup [current_design]

实际生成下载固件的时候会有2个 bin文件,对应按照提示下载即可。

如果不做multiboot,生成bin文件时候的使用方式和SPIX4没有什么差异。

  1. cd [get_property DIRECTORY [current_project]]/[current_project].runs/impl_1
  2. write_cfgmem -format bin -size 32 -interface SPIx8 -loadbit "up 0x00000000 [get_property top [current_fileset]].bit" -file [get_property DIRECTORY [current_project]]/test.bin -force

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/948351
推荐阅读
相关标签
  

闽ICP备14008679号