1

我正在尝试使用 Yosys 生成一个 edif 文件,然后将其与 Vivado tcl 脚本一起用于为 Artix 7 (xc7a15t) FPGA 生成比特流。但是,Vivado 似乎对 edif 文件中的一些单元格有问题。

当我在 Vivado 中完全使用相同的 verilog 和约束文件时,比特流创建得很好,当我将它加载到 FPGA 上时它按预期工作。

我已经根据此处的示例对我的工作流程进行了建模。

具体来说,我使用以下 shell 脚本作为 yosys 和 Vivado 命令的前端:

#!/bin/bash
yosys run_yosys.ys
vivado -nolog -nojournal -mode batch -source run_vivado.tcl

run_yosys.ys:

read_verilog top.v
synth_xilinx -edif top.edif -top top

run_vivado.tcl

read_xdc top.xdc
read_edif top.edif
link_design -part xc7a15tftg256-1 -top top
opt_design
place_design
route_design
report_utilization
report_timing
write_bitstream -force top.bit

top.v(简单的闪烁示例):

`default_nettype none

module top (
            input wire clk,
            output reg led);

        reg [24:0]     cnt = 25'b0;

        always @(posedge clk) begin
                cnt <= cnt + 1'b1;
                if (cnt == 25'b0) begin
                        led <= !led;
                end
                else begin
                        led <= led;
                end
        end

endmodule // top

顶部.xdc:

create_clock -period 25.000 -name clk -waveform {0.000 12.500} [get_ports clk]

set_property -dict {IOSTANDARD LVCMOS33 PACKAGE_PIN N11} [get_ports clk]
set_property -dict {IOSTANDARD LVCMOS33 PACKAGE_PIN D1} [get_ports led]

set_property CONFIG_VOLTAGE 3.3 [current_design]
set_property CFGBVS VCCO [current_design]

Vivado tcl 命令opt_design生成以下错误:

ERROR: [DRC INBB-3] Black Box Instances: Cell 'GND' of type 'GND/GND' has undefined contents and is considered a black box.  The contents of this cell must be defined for opt_design to complete successfully.

我得到了同样的错误 cell 'VCC'

我在调用时也会收到与此相关的警告link_design

CRITICAL WARNING: [Netlist 29-181] Cell 'GND' defined in file 'top.edif' has pin 'Y' which is not valid on primitive 'GND'.  Instance 'GND' will be treated as a black box, not an architecture primitive

我在这里错误地使用了 Yosys 吗?什么是正确的流程?我是 Yosys 的新手,如果我遗漏了一些明显的东西,请原谅我。

我正在使用 Yosys 0.8+147 和 Vivado 2017.2

4

1 回答 1

2

解决方案在Yosys 用户手册中。Vivado 抱怨“VCC”和“GND”单元,因此我们必须将-nogndvcc选项传递给write_edif. 如选项描述中所述-nogndvcc,为此,我们必须使用hilomap将 VCC 和 GND 与自定义驱动程序相关联。完整的 xilinx 综合通过以下方式实现:

synth_xilinx -top top
hilomap -hicell VCC P -locell GND G
write_edif -nogndvcc top.edif
于 2019-02-10T19:27:48.013 回答