aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-10 14:34:14 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-10 14:34:14 -0700
commitb6a39351f4e82ee00f95d3168fe26a62090166b2 (patch)
treee407e4e1fc19bccb37c0f2f3de9f1f503e156919 /passes/techmap
parente1dbeb3004873ae6914bd84e2020a34f8867477b (diff)
downloadyosys-b6a39351f4e82ee00f95d3168fe26a62090166b2.tar.gz
yosys-b6a39351f4e82ee00f95d3168fe26a62090166b2.tar.bz2
yosys-b6a39351f4e82ee00f95d3168fe26a62090166b2.zip
Revert "Add -tech xilinx_static"
This reverts commit dfe9d95579ab98d7518d40e427af858243de4eb3.
Diffstat (limited to 'passes/techmap')
-rw-r--r--passes/techmap/shregmap.cc15
1 files changed, 2 insertions, 13 deletions
diff --git a/passes/techmap/shregmap.cc b/passes/techmap/shregmap.cc
index a1483fab5..c8971170a 100644
--- a/passes/techmap/shregmap.cc
+++ b/passes/techmap/shregmap.cc
@@ -719,7 +719,7 @@ struct ShregmapPass : public Pass {
opts.zinit = true;
opts.tech = new ShregmapTechGreenpak4;
}
- else if (tech == "xilinx_static" || tech == "xilinx_dynamic") {
+ else if (tech == "xilinx_dynamic") {
opts.init = true;
opts.ffcells["$_DFF_P_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFF_N_"] = make_pair(IdString("\\D"), IdString("\\Q"));
@@ -727,18 +727,7 @@ struct ShregmapPass : public Pass {
opts.ffcells["$_DFFE_PN_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFFE_NP_"] = make_pair(IdString("\\D"), IdString("\\Q"));
opts.ffcells["$_DFFE_NN_"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDRE"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDRE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDSE"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDSE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDCE"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDCE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDPE"] = make_pair(IdString("\\D"), IdString("\\Q"));
- opts.ffcells["FDPE_1"] = make_pair(IdString("\\D"), IdString("\\Q"));
- if (tech == "xilinx_static")
- opts.tech = new ShregmapTechXilinx7Dynamic(opts);
- else if (tech == "xilinx_dynamic")
- opts.tech = new ShregmapTechXilinx7Dynamic(opts);
+ opts.tech = new ShregmapTechXilinx7Dynamic(opts);
} else {
argidx--;
break;