Added synth_xilinx -retime -flatten
[yosys.git] / techlibs / xilinx / synth_xilinx.cc
1 /*
2 * yosys -- Yosys Open SYnthesis Suite
3 *
4 * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 *
18 */
19
20 #include "kernel/register.h"
21 #include "kernel/celltypes.h"
22 #include "kernel/rtlil.h"
23 #include "kernel/log.h"
24
25 USING_YOSYS_NAMESPACE
26 PRIVATE_NAMESPACE_BEGIN
27
28 bool check_label(bool &active, std::string run_from, std::string run_to, std::string label)
29 {
30 if (label == run_from)
31 active = true;
32 if (label == run_to)
33 active = false;
34 return active;
35 }
36
37 struct SynthXilinxPass : public Pass {
38 SynthXilinxPass() : Pass("synth_xilinx", "synthesis for Xilinx FPGAs") { }
39 virtual void help()
40 {
41 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
42 log("\n");
43 log(" synth_xilinx [options]\n");
44 log("\n");
45 log("This command runs synthesis for Xilinx FPGAs. This command does not operate on\n");
46 log("partly selected designs. At the moment this command creates netlists that are\n");
47 log("compatible with 7-series and 6-series Xilinx devices.\n");
48 log("\n");
49 log(" -top <module>\n");
50 log(" use the specified module as top module (default='top')\n");
51 log("\n");
52 log(" -edif <file>\n");
53 log(" write the design to the specified edif file. writing of an output file\n");
54 log(" is omitted if this parameter is not specified.\n");
55 log("\n");
56 log(" -run <from_label>:<to_label>\n");
57 log(" only run the commands between the labels (see below). an empty\n");
58 log(" from label is synonymous to 'begin', and empty to label is\n");
59 log(" synonymous to the end of the command list.\n");
60 log("\n");
61 log(" -flatten\n");
62 log(" flatten design before synthesis\n");
63 log("\n");
64 log(" -retime\n");
65 log(" run 'abc' with -dff option\n");
66 log("\n");
67 log("\n");
68 log("The following commands are executed by this synthesis command:\n");
69 log("\n");
70 log(" begin:\n");
71 log(" hierarchy -check -top <top>\n");
72 log("\n");
73 log(" flatten: (only if -flatten)\n");
74 log(" proc\n");
75 log(" flatten\n");
76 log("\n");
77 log(" coarse:\n");
78 log(" synth -run coarse\n");
79 log(" dff2dffe\n");
80 log("\n");
81 log(" bram:\n");
82 log(" memory_bram -rules +/xilinx/brams.txt\n");
83 log(" techmap -map +/xilinx/brams.v\n");
84 log("\n");
85 log(" fine:\n");
86 log(" opt -fast -full\n");
87 log(" memory_map\n");
88 log(" opt -full\n");
89 log(" techmap -map +/techmap.v -map +/xilinx/arith.v\n");
90 log(" opt -fast\n");
91 log("\n");
92 log(" map_luts:\n");
93 log(" abc -lut 5:8 [-dff]\n");
94 log(" clean\n");
95 log("\n");
96 log(" map_cells:\n");
97 log(" techmap -map +/xilinx/cells.v\n");
98 log(" clean\n");
99 log("\n");
100 log(" edif:\n");
101 log(" write_edif synth.edif\n");
102 log("\n");
103 }
104 virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
105 {
106 std::string top_module = "top";
107 std::string arch_name = "spartan6";
108 std::string edif_file;
109 std::string run_from, run_to;
110 bool flatten = false;
111 bool retime = false;
112
113 size_t argidx;
114 for (argidx = 1; argidx < args.size(); argidx++)
115 {
116 if (args[argidx] == "-top" && argidx+1 < args.size()) {
117 top_module = args[++argidx];
118 continue;
119 }
120 if (args[argidx] == "-edif" && argidx+1 < args.size()) {
121 edif_file = args[++argidx];
122 continue;
123 }
124 if (args[argidx] == "-run" && argidx+1 < args.size()) {
125 size_t pos = args[argidx+1].find(':');
126 if (pos == std::string::npos)
127 break;
128 run_from = args[++argidx].substr(0, pos);
129 run_to = args[argidx].substr(pos+1);
130 continue;
131 }
132 if (args[argidx] == "-flatten") {
133 flatten = true;
134 continue;
135 }
136 if (args[argidx] == "-retime") {
137 retime = true;
138 continue;
139 }
140 break;
141 }
142 extra_args(args, argidx, design);
143
144 if (!design->full_selection())
145 log_cmd_error("This comannd only operates on fully selected designs!\n");
146
147 bool active = run_from.empty();
148
149 log_header("Executing SYNTH_XILINX pass.\n");
150 log_push();
151
152 if (check_label(active, run_from, run_to, "begin"))
153 {
154 Pass::call(design, stringf("hierarchy -check -top %s", top_module.c_str()));
155 }
156
157 if (flatten && check_label(active, run_from, run_to, "flatten"))
158 {
159 Pass::call(design, "proc");
160 Pass::call(design, "flatten");
161 }
162
163 if (check_label(active, run_from, run_to, "coarse"))
164 {
165 Pass::call(design, "synth -run coarse");
166 Pass::call(design, "dff2dffe");
167 }
168
169 if (check_label(active, run_from, run_to, "bram"))
170 {
171 Pass::call(design, "memory_bram -rules +/xilinx/brams.txt");
172 Pass::call(design, "techmap -map +/xilinx/brams.v");
173 }
174
175 if (check_label(active, run_from, run_to, "fine"))
176 {
177 Pass::call(design, "opt -fast -full");
178 Pass::call(design, "memory_map");
179 Pass::call(design, "opt -full");
180 Pass::call(design, "techmap -map +/techmap.v -map +/xilinx/arith.v");
181 Pass::call(design, "opt -fast");
182 }
183
184 if (check_label(active, run_from, run_to, "map_luts"))
185 {
186 Pass::call(design, "abc -lut 5:8" + string(retime ? " -dff" : ""));
187 Pass::call(design, "clean");
188 }
189
190 if (check_label(active, run_from, run_to, "map_cells"))
191 {
192 Pass::call(design, "techmap -map +/xilinx/cells.v");
193 Pass::call(design, "clean");
194 }
195
196 if (check_label(active, run_from, run_to, "edif"))
197 {
198 if (!edif_file.empty())
199 Pass::call(design, stringf("write_edif %s", edif_file.c_str()));
200 }
201
202 log_pop();
203 }
204 } SynthXilinxPass;
205
206 PRIVATE_NAMESPACE_END