这里把仿真单独编号 1) 新建工程 2) 生成原文件 手段CORE Generator Module Language Templates 3) check syntax ① Behavioral simulate 我觉得从Synthesis and Simulation Design Guide 文件看,应该先RTL Simulation (that is, Behavioral simulate )。其实没 有关系,综合和RTL 仿真的顺序无所谓,这两个不一定要谁在前 己见:注意跑行为仿真前是不需要综合的,仅是RTL 代码仿真 参考:[In-Depth Tutorial] Chapter 4 P91 4) Synthesis 步骤:Entering Constraints (xcf 格式) -> Entering Synthesis Options -> Synthsizing 参考:[In-Depth Tutorial]P43-P50 我觉得这里的constraints 是 synthesis constraints: 《cgd》p18 已见: 参《Xilinx ISE 9.X FPGA/CPLD 设计指南(人民邮电)》P31 综合是把HDL 描述转化为使用基本门电路以及厂家库提供的基本单元进行描述的网表(Netlist)的过程。 综合时需要附加一定的约束,指导综合过程的进行,最常用的约束有管脚位置约束和附加时序约束
② Post- Synthesis Simulation 这里以《夏宇闻》第17 章的设计为例,前面行为仿真时可以直接仿真cputop 模块(专为仿真写的,不可综合),但在synthesize 时,必须把cpu 模块Set as Top Module,因为cputop 模块是不可综合的,然后点击Generate Post-Synthesis Simulation Model,可以注意到原文件夹下会生成netgen 文件夹,打开会发现有synthsis 文件夹,里面有cpu_synthesis.v文件,这个文件是专门用来仿真的。 但是这里好像无法直接在ISE 中做综合后仿真,然后用MODELSIM,可以建工程,添加顶层测试文件cputop.v 等,然后注意仅需要添加cpu_synthesis.v 文件即可,不需要加cpu.v 及其子文件。 问题注意: 1 原测试文件中cputop.v 中诸如写法“t_cpu.m_alu.opcode”写法现要改成t_cpu.opcode,因为现在模块层次关系被打散了,不再有原模块间关系。 2 在vsim 时要同时选中你的top 层设计和glbl,一起仿真,否则仿真时会出现错误信息“Unresolved reference to 'glbl'” 5) (生成分区)、时序约束 Using the Constraints Editor 参考:[In-Depth Tutorial]P116 6) translate the design 输入文件: 输出文件: 作用:把所有的netlist 和design constraint 合并到一起,生成一个ngd 文件供map 工具使用
③ Post- Translate Simulation 不点击Generate Post-Translate Simulation Model,则Sources for 中Post-Translate Simulation 是没有内容的。 运行之后文件夹netgen 中会有文件夹translate,其中有文件cpu_translate.v,接下来类似cpu_synthesis.v 方法 7) 管脚分配 工具Floorplan Editor 参考:[In-Depth Tutorial]P120 8) Mapping the Design [In-Depth Tutorial]P123 MAP 命令是将NGDBuild 命令所生成的ngd 文件,映射到具体的FPGA 器件里面去。MAP 将产生一个NCD 文件供PAR使用 然后看报告 可供选择调试:[In-Depth Tutorial]P126 ->Using Timing Analysis to evaluate block delay after mapping Because the design is not yet placed and routed, actual routing delay information is not available. The timing report describes the logical block delays and estimated routing delays.
④ Post- Map Simulation 注意这里还要加SDF 文件(菜单Simulate->Start Simulation 后有一TAB:SDF,可以添加SDF 文件),但有问题“failed to open SDF file”netgen/map/cpu_map.sdf” in read mode”。 原因:在ise 中process 中点开Implement Design 左边的加号,再点开MAP,右击Generate post-MAP Simulation Model, 打开Simulation Model Properties 中 Include $sdf_annotate Function In Verilog File 项选,选中的话会在生成的post-map Simulation Model(.v 文件)中wire 定义完后加入initial $sdf_annotate(“netgen/par/traffic_light_timesim.sdf”);一句话;在这也就是说,在modelsim 仿真时新建的工程下必须有netgen/par 目录,并且traffic_light_timesim.sdf 也必须在这个目录里,而且sdf 文件名是不能变的. 解决方法: 想法1: 把Simulation Model Properties 中 Include $sdf_annotate Function In Verilog File 项取消,然后用手动添加SDF文件(菜单Simulate->Start Simulation 后有一TAB:SDF,可以添加SDF 文件),结果发现不行 想法2 : 保留Include $sdf_annotate Function In Verilog File 项, 然后打开cpu_map.v 文件, 找到“ initial $sdf_annotate(“netgen/map/cpu_map.sdf”)”改成initial $sdf_annotate(“cpu_map.sdf”),把SDF 文件copy 到仿真文件夹。(这里不再需要手动添加sdf 文件了)。可行。 9) Placing and Routing the Design [In-Depth Tutorial]P127 启动后可看报告 可供选择调试: ->Using FPGA Editor to Verify the Place and Route[In-Depth Tutorial]P129 -> Evaluating Post-Layout Timing 考虑了走线延迟后的仿真[In-Depth Tutorial]P131 (我自己生成的)
⑤Post- Place&Route Simulation 与Post-Map 的仿真情况类似 参考:[In-Depth Tutorial] Chapter 6 P139 10) Programming 补充: 各仿真步骤的区别和联系 以夏宇闻第17 章的RISC_CPU 为例 (1)比较Behavorial 仿真和综合后仿真 Behavorial 仿真 需要文件:除了用于仿真的cputop.v, ram.v, rom.v 的文件外,还要cpu.v 及描述其子模块的各verilog 文件,包括alu.v,addr.v, register.v 等,在这里不需要任何库文件(UNISIM, XilinxCoreLib)(但若原文件中有实例化文件则需要), 仿真时只需要仿真 work 库中的cputop 模块
综合后仿真 需要文件:除了用于仿真的cputop.v, ram.v, rom.v 的文件外,只需要cpu_synthesis.v 文件,不再需要描述下级模块的alu.v,addr.v, register.v 等,但这里需要库文件UNISIM,仿真时需要同时仿真 work 库中的cputop 和glbl 模块
(2)比较post-synthesis 仿真和post-translate 后仿真 所需要的库文件不同
(3)比较post-translate 仿真和post-map 后仿真 Post-map 仿真还需要添加SDF 延时文件
|