2013-10-27 03:33:47 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-10-27 03:33:47 -05:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-10-27 03:33:47 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "kernel/register.h"
|
|
|
|
#include "kernel/celltypes.h"
|
|
|
|
#include "kernel/rtlil.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
bool check_label(bool &active, std::string run_from, std::string run_to, std::string label)
|
2013-10-27 03:33:47 -05:00
|
|
|
{
|
|
|
|
if (label == run_from)
|
|
|
|
active = true;
|
|
|
|
if (label == run_to)
|
|
|
|
active = false;
|
|
|
|
return active;
|
|
|
|
}
|
|
|
|
|
2018-04-18 18:48:05 -05:00
|
|
|
struct SynthXilinxPass : public Pass
|
|
|
|
{
|
2013-10-27 03:33:47 -05:00
|
|
|
SynthXilinxPass() : Pass("synth_xilinx", "synthesis for Xilinx FPGAs") { }
|
2018-04-18 18:48:05 -05:00
|
|
|
|
2018-07-21 01:41:18 -05:00
|
|
|
void help() YS_OVERRIDE
|
2013-10-27 03:33:47 -05:00
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
|
|
|
log(" synth_xilinx [options]\n");
|
|
|
|
log("\n");
|
|
|
|
log("This command runs synthesis for Xilinx FPGAs. This command does not operate on\n");
|
2015-01-13 06:20:32 -06:00
|
|
|
log("partly selected designs. At the moment this command creates netlists that are\n");
|
2015-02-01 16:06:44 -06:00
|
|
|
log("compatible with 7-Series Xilinx devices.\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
|
|
|
log(" -top <module>\n");
|
2015-04-04 12:00:15 -05:00
|
|
|
log(" use the specified module as top module\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
|
|
|
log(" -edif <file>\n");
|
|
|
|
log(" write the design to the specified edif file. writing of an output file\n");
|
|
|
|
log(" is omitted if this parameter is not specified.\n");
|
|
|
|
log("\n");
|
2018-04-18 18:48:05 -05:00
|
|
|
log(" -blif <file>\n");
|
|
|
|
log(" write the design to the specified BLIF file. writing of an output file\n");
|
|
|
|
log(" is omitted if this parameter is not specified.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -vpr\n");
|
|
|
|
log(" generate an output netlist (and BLIF file) suitable for VPR\n");
|
|
|
|
log(" (this feature is experimental and incomplete)\n");
|
|
|
|
log("\n");
|
2019-03-01 16:35:14 -06:00
|
|
|
log(" -nobram\n");
|
2019-03-21 17:04:44 -05:00
|
|
|
log(" disable inference of block rams\n");
|
2019-03-01 13:21:07 -06:00
|
|
|
log("\n");
|
2019-03-01 16:35:14 -06:00
|
|
|
log(" -nodram\n");
|
2019-03-21 17:04:44 -05:00
|
|
|
log(" disable inference of distributed rams\n");
|
|
|
|
log("\n");
|
2019-04-03 10:28:07 -05:00
|
|
|
log(" -nosrl\n");
|
2019-03-21 17:04:44 -05:00
|
|
|
log(" disable inference of shift registers\n");
|
2019-03-01 13:21:07 -06:00
|
|
|
log("\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log(" -run <from_label>:<to_label>\n");
|
|
|
|
log(" only run the commands between the labels (see below). an empty\n");
|
|
|
|
log(" from label is synonymous to 'begin', and empty to label is\n");
|
|
|
|
log(" synonymous to the end of the command list.\n");
|
|
|
|
log("\n");
|
2015-01-17 13:47:18 -06:00
|
|
|
log(" -flatten\n");
|
|
|
|
log(" flatten design before synthesis\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -retime\n");
|
|
|
|
log(" run 'abc' with -dff option\n");
|
|
|
|
log("\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
|
|
|
log("The following commands are executed by this synthesis command:\n");
|
|
|
|
log("\n");
|
|
|
|
log(" begin:\n");
|
2015-02-01 10:09:34 -06:00
|
|
|
log(" read_verilog -lib +/xilinx/cells_sim.v\n");
|
2016-03-19 05:09:10 -05:00
|
|
|
log(" read_verilog -lib +/xilinx/cells_xtra.v\n");
|
2015-04-06 01:44:30 -05:00
|
|
|
log(" read_verilog -lib +/xilinx/brams_bb.v\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log(" hierarchy -check -top <top>\n");
|
|
|
|
log("\n");
|
2015-01-17 13:47:18 -06:00
|
|
|
log(" flatten: (only if -flatten)\n");
|
|
|
|
log(" proc\n");
|
|
|
|
log(" flatten\n");
|
|
|
|
log("\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log(" coarse:\n");
|
2015-01-05 06:59:04 -06:00
|
|
|
log(" synth -run coarse\n");
|
2015-01-13 06:20:32 -06:00
|
|
|
log("\n");
|
2019-03-01 16:35:14 -06:00
|
|
|
log(" bram: (only executed when '-nobram' is not given)\n");
|
2015-01-05 06:59:04 -06:00
|
|
|
log(" memory_bram -rules +/xilinx/brams.txt\n");
|
2015-01-18 12:43:54 -06:00
|
|
|
log(" techmap -map +/xilinx/brams_map.v\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
2019-03-01 16:35:14 -06:00
|
|
|
log(" dram: (only executed when '-nodram' is not given)\n");
|
2015-04-09 01:17:14 -05:00
|
|
|
log(" memory_bram -rules +/xilinx/drams.txt\n");
|
|
|
|
log(" techmap -map +/xilinx/drams_map.v\n");
|
|
|
|
log("\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log(" fine:\n");
|
2015-01-17 08:39:54 -06:00
|
|
|
log(" opt -fast -full\n");
|
|
|
|
log(" memory_map\n");
|
2016-02-13 01:20:19 -06:00
|
|
|
log(" dffsr2dff\n");
|
2015-09-25 05:23:11 -05:00
|
|
|
log(" dff2dffe\n");
|
2019-04-05 19:35:49 -05:00
|
|
|
log(" simplemap t:$dff t:$dffe (without '-nosrl' only)\n");
|
2019-04-21 16:16:34 -05:00
|
|
|
log(" pmux2shiftx (without '-nosrl' only)\n");
|
|
|
|
log(" opt_expr -mux_undef (without '-nosrl' only)\n");
|
2019-04-05 19:35:49 -05:00
|
|
|
log(" shregmap -tech xilinx -minlen 3 (without '-nosrl' only)\n");
|
2019-04-21 16:16:34 -05:00
|
|
|
log(" opt -full\n");
|
2019-04-05 17:15:13 -05:00
|
|
|
log(" techmap -map +/techmap.v -map +/xilinx/arith_map.v\n");
|
2015-01-17 08:39:54 -06:00
|
|
|
log(" opt -fast\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
|
|
|
log(" map_cells:\n");
|
2019-04-05 19:35:49 -05:00
|
|
|
log(" techmap -map +/techmap.v -map +/xilinx/cells_map.v\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log(" clean\n");
|
|
|
|
log("\n");
|
2019-04-04 09:48:13 -05:00
|
|
|
log(" map_luts:\n");
|
2019-04-05 17:46:18 -05:00
|
|
|
log(" techmap -map +/techmap.v -map +/xilinx/ff_map.v t:$_DFF_?N?\n");
|
|
|
|
log(" abc -luts 2:2,3,6:5,10,20 [-dff]\n");
|
2019-04-04 09:48:13 -05:00
|
|
|
log(" clean\n");
|
2019-04-05 19:35:49 -05:00
|
|
|
log(" shregmap -minlen 3 -init -params -enpol any_or_none (without '-nosrl' only)\n");
|
|
|
|
log(" techmap -map +/xilinx/lut_map.v -map +/xilinx/ff_map.v -map +/xilinx/cells_map.v");
|
|
|
|
log(" dffinit -ff FDRE Q INIT -ff FDCE Q INIT -ff FDPE Q INIT -ff FDSE Q INIT \\\n");
|
|
|
|
log(" -ff FDRE_1 Q INIT -ff FDCE_1 Q INIT -ff FDPE_1 Q INIT -ff FDSE_1 Q INIT\n");
|
2019-04-04 09:48:13 -05:00
|
|
|
log("\n");
|
2015-02-15 06:00:00 -06:00
|
|
|
log(" check:\n");
|
|
|
|
log(" hierarchy -check\n");
|
2015-02-15 06:25:15 -06:00
|
|
|
log(" stat\n");
|
2015-02-15 06:00:00 -06:00
|
|
|
log(" check -noinit\n");
|
|
|
|
log("\n");
|
2015-05-26 10:04:37 -05:00
|
|
|
log(" edif: (only if -edif)\n");
|
|
|
|
log(" write_edif <file-name>\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log("\n");
|
2018-04-18 18:48:05 -05:00
|
|
|
log(" blif: (only if -blif)\n");
|
|
|
|
log(" write_blif <file-name>\n");
|
|
|
|
log("\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
}
|
2018-07-21 01:41:18 -05:00
|
|
|
void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
|
2013-10-27 03:33:47 -05:00
|
|
|
{
|
2015-04-04 12:00:15 -05:00
|
|
|
std::string top_opt = "-auto-top";
|
2013-10-27 03:33:47 -05:00
|
|
|
std::string edif_file;
|
2018-04-18 18:48:05 -05:00
|
|
|
std::string blif_file;
|
2013-10-27 03:33:47 -05:00
|
|
|
std::string run_from, run_to;
|
2015-01-17 13:47:18 -06:00
|
|
|
bool flatten = false;
|
|
|
|
bool retime = false;
|
2018-04-18 18:48:05 -05:00
|
|
|
bool vpr = false;
|
2019-03-01 16:35:14 -06:00
|
|
|
bool nobram = false;
|
|
|
|
bool nodram = false;
|
2019-03-21 17:04:44 -05:00
|
|
|
bool nosrl = false;
|
2013-10-27 03:33:47 -05:00
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++)
|
|
|
|
{
|
|
|
|
if (args[argidx] == "-top" && argidx+1 < args.size()) {
|
2015-04-04 12:00:15 -05:00
|
|
|
top_opt = "-top " + args[++argidx];
|
2013-10-27 03:33:47 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-edif" && argidx+1 < args.size()) {
|
|
|
|
edif_file = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
2018-04-18 18:48:05 -05:00
|
|
|
if (args[argidx] == "-blif" && argidx+1 < args.size()) {
|
|
|
|
blif_file = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
2013-10-27 03:33:47 -05:00
|
|
|
if (args[argidx] == "-run" && argidx+1 < args.size()) {
|
|
|
|
size_t pos = args[argidx+1].find(':');
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
break;
|
|
|
|
run_from = args[++argidx].substr(0, pos);
|
|
|
|
run_to = args[argidx].substr(pos+1);
|
|
|
|
continue;
|
|
|
|
}
|
2015-01-17 13:47:18 -06:00
|
|
|
if (args[argidx] == "-flatten") {
|
|
|
|
flatten = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-retime") {
|
|
|
|
retime = true;
|
|
|
|
continue;
|
|
|
|
}
|
2018-04-18 18:48:05 -05:00
|
|
|
if (args[argidx] == "-vpr") {
|
|
|
|
vpr = true;
|
|
|
|
continue;
|
|
|
|
}
|
2019-03-01 16:35:14 -06:00
|
|
|
if (args[argidx] == "-nobram") {
|
|
|
|
nobram = true;
|
2019-03-01 13:21:07 -06:00
|
|
|
continue;
|
|
|
|
}
|
2019-03-01 16:35:14 -06:00
|
|
|
if (args[argidx] == "-nodram") {
|
|
|
|
nodram = true;
|
2019-03-01 13:21:07 -06:00
|
|
|
continue;
|
|
|
|
}
|
2019-03-21 17:04:44 -05:00
|
|
|
if (args[argidx] == "-nosrl") {
|
|
|
|
nosrl = true;
|
|
|
|
continue;
|
|
|
|
}
|
2013-10-27 03:33:47 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(args, argidx, design);
|
|
|
|
|
|
|
|
if (!design->full_selection())
|
2018-12-07 13:14:07 -06:00
|
|
|
log_cmd_error("This command only operates on fully selected designs!\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
|
|
|
|
bool active = run_from.empty();
|
|
|
|
|
2016-04-21 16:28:37 -05:00
|
|
|
log_header(design, "Executing SYNTH_XILINX pass.\n");
|
2013-10-27 03:33:47 -05:00
|
|
|
log_push();
|
|
|
|
|
|
|
|
if (check_label(active, run_from, run_to, "begin"))
|
|
|
|
{
|
2019-03-01 13:21:07 -06:00
|
|
|
if (vpr) {
|
|
|
|
Pass::call(design, "read_verilog -lib -D_EXPLICIT_CARRY +/xilinx/cells_sim.v");
|
|
|
|
} else {
|
|
|
|
Pass::call(design, "read_verilog -lib +/xilinx/cells_sim.v");
|
|
|
|
}
|
|
|
|
|
2016-03-19 05:09:10 -05:00
|
|
|
Pass::call(design, "read_verilog -lib +/xilinx/cells_xtra.v");
|
2019-03-01 13:21:07 -06:00
|
|
|
|
2019-03-01 16:35:14 -06:00
|
|
|
if (!nobram) {
|
2019-03-01 13:21:07 -06:00
|
|
|
Pass::call(design, "read_verilog -lib +/xilinx/brams_bb.v");
|
|
|
|
}
|
|
|
|
|
2015-04-04 12:00:15 -05:00
|
|
|
Pass::call(design, stringf("hierarchy -check %s", top_opt.c_str()));
|
2013-10-27 03:33:47 -05:00
|
|
|
}
|
|
|
|
|
2015-01-17 13:47:18 -06:00
|
|
|
if (flatten && check_label(active, run_from, run_to, "flatten"))
|
|
|
|
{
|
|
|
|
Pass::call(design, "proc");
|
|
|
|
Pass::call(design, "flatten");
|
|
|
|
}
|
|
|
|
|
2013-10-27 03:33:47 -05:00
|
|
|
if (check_label(active, run_from, run_to, "coarse"))
|
|
|
|
{
|
2015-01-05 06:59:04 -06:00
|
|
|
Pass::call(design, "synth -run coarse");
|
2015-01-13 06:20:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (check_label(active, run_from, run_to, "bram"))
|
|
|
|
{
|
2019-03-01 16:35:14 -06:00
|
|
|
if (!nobram) {
|
2019-03-01 13:21:07 -06:00
|
|
|
Pass::call(design, "memory_bram -rules +/xilinx/brams.txt");
|
|
|
|
Pass::call(design, "techmap -map +/xilinx/brams_map.v");
|
|
|
|
}
|
2013-10-27 03:33:47 -05:00
|
|
|
}
|
|
|
|
|
2015-04-09 01:17:14 -05:00
|
|
|
if (check_label(active, run_from, run_to, "dram"))
|
|
|
|
{
|
2019-03-01 16:35:14 -06:00
|
|
|
if (!nodram) {
|
2019-03-01 13:21:07 -06:00
|
|
|
Pass::call(design, "memory_bram -rules +/xilinx/drams.txt");
|
|
|
|
Pass::call(design, "techmap -map +/xilinx/drams_map.v");
|
|
|
|
}
|
2015-04-09 01:17:14 -05:00
|
|
|
}
|
|
|
|
|
2013-10-27 03:33:47 -05:00
|
|
|
if (check_label(active, run_from, run_to, "fine"))
|
|
|
|
{
|
2019-04-21 16:16:34 -05:00
|
|
|
Pass::call(design, "opt -fast");
|
2015-01-17 08:39:54 -06:00
|
|
|
Pass::call(design, "memory_map");
|
2016-02-13 01:20:19 -06:00
|
|
|
Pass::call(design, "dffsr2dff");
|
2015-09-25 05:23:11 -05:00
|
|
|
Pass::call(design, "dff2dffe");
|
2019-03-01 13:21:07 -06:00
|
|
|
|
2019-04-05 19:35:49 -05:00
|
|
|
if (!nosrl) {
|
2019-04-04 09:39:19 -05:00
|
|
|
Pass::call(design, "simplemap t:$dff t:$dffe");
|
2019-04-21 16:16:34 -05:00
|
|
|
Pass::call(design, "pmux2shiftx");
|
|
|
|
Pass::call(design, "opt_expr -mux_undef");
|
2019-03-25 15:18:55 -05:00
|
|
|
Pass::call(design, "shregmap -tech xilinx -minlen 3");
|
2019-03-21 17:04:44 -05:00
|
|
|
}
|
2019-03-15 21:13:40 -05:00
|
|
|
|
2019-04-21 16:16:34 -05:00
|
|
|
Pass::call(design, "opt -full");
|
|
|
|
|
2019-03-01 13:21:07 -06:00
|
|
|
if (vpr) {
|
2019-04-05 16:43:06 -05:00
|
|
|
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v -D _EXPLICIT_CARRY");
|
2019-03-01 13:21:07 -06:00
|
|
|
} else {
|
2019-04-05 16:43:06 -05:00
|
|
|
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith_map.v");
|
2019-03-01 13:21:07 -06:00
|
|
|
}
|
|
|
|
|
2019-03-19 18:14:08 -05:00
|
|
|
Pass::call(design, "hierarchy -check");
|
2015-01-17 08:39:54 -06:00
|
|
|
Pass::call(design, "opt -fast");
|
2013-10-27 03:33:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (check_label(active, run_from, run_to, "map_cells"))
|
|
|
|
{
|
2019-04-05 14:55:52 -05:00
|
|
|
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/cells_map.v");
|
2013-10-27 03:33:47 -05:00
|
|
|
Pass::call(design, "clean");
|
|
|
|
}
|
|
|
|
|
2019-04-04 09:48:13 -05:00
|
|
|
if (check_label(active, run_from, run_to, "map_luts"))
|
|
|
|
{
|
2019-04-05 17:46:18 -05:00
|
|
|
Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/ff_map.v t:$_DFF_?N?");
|
2019-04-04 09:48:13 -05:00
|
|
|
Pass::call(design, "abc -luts 2:2,3,6:5,10,20" + string(retime ? " -dff" : ""));
|
|
|
|
Pass::call(design, "clean");
|
2019-04-05 19:35:49 -05:00
|
|
|
if (!nosrl)
|
|
|
|
Pass::call(design, "shregmap -minlen 3 -init -params -enpol any_or_none");
|
|
|
|
Pass::call(design, "techmap -map +/xilinx/lut_map.v -map +/xilinx/ff_map.v -map +/xilinx/cells_map.v");
|
2019-04-05 18:20:43 -05:00
|
|
|
Pass::call(design, "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");
|
2019-04-04 09:48:13 -05:00
|
|
|
}
|
|
|
|
|
2015-02-15 06:00:00 -06:00
|
|
|
if (check_label(active, run_from, run_to, "check"))
|
|
|
|
{
|
|
|
|
Pass::call(design, "hierarchy -check");
|
2015-02-15 06:25:15 -06:00
|
|
|
Pass::call(design, "stat");
|
2015-02-15 06:00:00 -06:00
|
|
|
Pass::call(design, "check -noinit");
|
|
|
|
}
|
|
|
|
|
2013-10-27 03:33:47 -05:00
|
|
|
if (check_label(active, run_from, run_to, "edif"))
|
|
|
|
{
|
|
|
|
if (!edif_file.empty())
|
2019-03-05 17:16:13 -06:00
|
|
|
Pass::call(design, stringf("write_edif -pvector bra %s", edif_file.c_str()));
|
2013-10-27 03:33:47 -05:00
|
|
|
}
|
2018-04-18 18:48:05 -05:00
|
|
|
if (check_label(active, run_from, run_to, "blif"))
|
|
|
|
{
|
|
|
|
if (!blif_file.empty())
|
|
|
|
Pass::call(design, stringf("write_blif %s", edif_file.c_str()));
|
|
|
|
}
|
2013-10-27 03:33:47 -05:00
|
|
|
|
|
|
|
log_pop();
|
|
|
|
}
|
|
|
|
} SynthXilinxPass;
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2014-09-27 09:17:53 -05:00
|
|
|
PRIVATE_NAMESPACE_END
|