aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/xilinx/synth_xilinx.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-15 09:08:56 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-15 09:08:56 -0700
commit295bb23ae06d36acc8ced4825ece6003470cd357 (patch)
tree64492ad6f7873d32b72a5a6e80ef85bfc2e3610c /techlibs/xilinx/synth_xilinx.cc
parentda487c4f31fd2d97c0d7110010e7379e5445ceb0 (diff)
downloadyosys-295bb23ae06d36acc8ced4825ece6003470cd357.tar.gz
yosys-295bb23ae06d36acc8ced4825ece6003470cd357.tar.bz2
yosys-295bb23ae06d36acc8ced4825ece6003470cd357.zip
Wrap FDRE with $__ABC_FDRE containing comb
Diffstat (limited to 'techlibs/xilinx/synth_xilinx.cc')
-rw-r--r--techlibs/xilinx/synth_xilinx.cc22
1 files changed, 15 insertions, 7 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc
index a11648873..b9da4e6a6 100644
--- a/techlibs/xilinx/synth_xilinx.cc
+++ b/techlibs/xilinx/synth_xilinx.cc
@@ -276,25 +276,33 @@ struct SynthXilinxPass : public ScriptPass
if (check_label("map_cells")) {
run("techmap -map +/techmap.v -map +/xilinx/cells_map.v");
+ if (abc == "abc9")
+ run("techmap -max_iter 1 -D _ABC -map +/xilinx/ff_map.v");
run("clean");
}
if (check_label("map_luts")) {
- if (abc == "abc9")
- run(abc + " -lut +/xilinx/abc_xc7.lut -box +/xilinx/abc_xc7.box -W " + XC7_WIRE_DELAY + string(retime ? " -dff" : ""));
- else if (help_mode)
+ if (abc == "abc9") {
+ run("read_verilog -icells -lib +/xilinx/abc_ff.v");
+ run(abc + " -lut +/xilinx/abc_xc7.lut -box +/xilinx/abc_xc7.box -W " + XC7_WIRE_DELAY + string(retime ? " -retime" : ""));
+ }
+ else if (help_mode) {
run(abc + " -luts 2:2,3,6:5,10,20 [-dff]");
- else
+ run("dffinit -ff FDRE Q INIT -ff FDCE Q INIT -ff FDPE Q INIT -ff FDSE Q INIT "
+ "-ff FDRE_1 Q INIT -ff FDCE_1 Q INIT -ff FDPE_1 Q INIT -ff FDSE_1 Q INIT");
+ }
+ else {
run(abc + " -luts 2:2,3,6:5,10,20" + string(retime ? " -dff" : ""));
+ run("dffinit -ff FDRE Q INIT -ff FDCE Q INIT -ff FDPE Q INIT -ff FDSE Q INIT "
+ "-ff FDRE_1 Q INIT -ff FDCE_1 Q INIT -ff FDPE_1 Q INIT -ff FDSE_1 Q INIT");
+ }
run("clean");
// This shregmap call infers fixed length shift registers after abc
// has performed any necessary retiming
if (!nosrl || help_mode)
run("shregmap -minlen 3 -init -params -enpol any_or_none", "(skip if '-nosrl')");
- run("techmap -map +/xilinx/lut_map.v -map +/xilinx/ff_map.v -map +/xilinx/cells_map.v");
- run("dffinit -ff FDRE Q INIT -ff FDCE Q INIT -ff FDPE Q INIT -ff FDSE Q INIT "
- "-ff FDRE_1 Q INIT -ff FDCE_1 Q INIT -ff FDPE_1 Q INIT -ff FDSE_1 Q INIT");
+ run("techmap -map +/xilinx/lut_map.v -map +/xilinx/cells_map.v");
run("clean");
}