Added "yosys -D" feature
[yosys.git] / techlibs / greenpak4 / synth_greenpak4.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 SynthGreenPAK4Pass : public Pass {
38 SynthGreenPAK4Pass() : Pass("synth_greenpak4", "synthesis for GreenPAK4 FPGAs") { }
39 virtual void help()
40 {
41 // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
42 log("\n");
43 log(" synth_greenpak4 [options]\n");
44 log("\n");
45 log("This command runs synthesis for GreenPAK4 FPGAs. This work is experimental.\n");
46 log("\n");
47 log(" -top <module>\n");
48 log(" use the specified module as top module (default='top')\n");
49 log("\n");
50 log(" -part <part>\n");
51 log(" synthesize for the specified part. Valid values are SLG46140V,\n");
52 log(" SLG46620V, and SLG46621V (default).\n");
53 log("\n");
54 log(" -json <file>\n");
55 log(" write the design to the specified JSON file. writing of an output file\n");
56 log(" is omitted if this parameter is not specified.\n");
57 log("\n");
58 log(" -run <from_label>:<to_label>\n");
59 log(" only run the commands between the labels (see below). an empty\n");
60 log(" from label is synonymous to 'begin', and empty to label is\n");
61 log(" synonymous to the end of the command list.\n");
62 log("\n");
63 log(" -noflatten\n");
64 log(" do not flatten design before synthesis\n");
65 log("\n");
66 log(" -retime\n");
67 log(" run 'abc' with -dff option\n");
68 log("\n");
69 log("\n");
70 log("The following commands are executed by this synthesis command:\n");
71 log("\n");
72 log(" begin:\n");
73 log(" read_verilog -lib +/greenpak4/cells_sim.v\n");
74 log(" hierarchy -check -top <top>\n");
75 log("\n");
76 log(" flatten: (unless -noflatten)\n");
77 log(" proc\n");
78 log(" flatten\n");
79 log(" tribuf -logic\n");
80 log("\n");
81 log(" coarse:\n");
82 log(" synth -run coarse\n");
83 log("\n");
84 log(" fine:\n");
85 log(" greenpak4_counters\n");
86 log(" clean\n");
87 log(" opt -fast -mux_undef -undriven -fine\n");
88 log(" memory_map\n");
89 log(" opt -undriven -fine\n");
90 log(" techmap\n");
91 log(" dfflibmap -prepare -liberty +/greenpak4/gp_dff.lib\n");
92 log(" opt -fast\n");
93 log(" abc -dff (only if -retime)\n");
94 log("\n");
95 log(" map_luts:\n");
96 log(" nlutmap -luts 0,6,8,2 (for -part SLG46140V)\n");
97 log(" nlutmap -luts 0,8,16,2 (for -part SLG46620V)\n");
98 log(" nlutmap -luts 0,8,16,2 (for -part SLG46621V)\n");
99 log(" clean\n");
100 log("\n");
101 log(" map_cells:\n");
102 log(" dfflibmap -liberty +/greenpak4/gp_dff.lib\n");
103 log(" techmap -map +/greenpak4/cells_map.v\n");
104 log(" dffinit -ff GP_DFF Q INIT\n");
105 log(" dffinit -ff GP_DFFR Q INIT\n");
106 log(" dffinit -ff GP_DFFS Q INIT\n");
107 log(" dffinit -ff GP_DFFSR Q INIT\n");
108 log(" clean\n");
109 log("\n");
110 log(" check:\n");
111 log(" hierarchy -check\n");
112 log(" stat\n");
113 log(" check -noinit\n");
114 log("\n");
115 log(" json:\n");
116 log(" splitnets (temporary workaround for gp4par parser limitation)\n");
117 log(" write_json <file-name>\n");
118 log("\n");
119 }
120 virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
121 {
122 std::string top_opt = "-auto-top";
123 std::string part = "SLG46621V";
124 std::string run_from, run_to;
125 std::string json_file;
126 bool flatten = true;
127 bool retime = false;
128
129 size_t argidx;
130 for (argidx = 1; argidx < args.size(); argidx++)
131 {
132 if (args[argidx] == "-top" && argidx+1 < args.size()) {
133 top_opt = "-top " + args[++argidx];
134 continue;
135 }
136 if (args[argidx] == "-json" && argidx+1 < args.size()) {
137 json_file = args[++argidx];
138 continue;
139 }
140 if (args[argidx] == "-part" && argidx+1 < args.size()) {
141 part = args[++argidx];
142 continue;
143 }
144 if (args[argidx] == "-run" && argidx+1 < args.size()) {
145 size_t pos = args[argidx+1].find(':');
146 if (pos == std::string::npos)
147 break;
148 run_from = args[++argidx].substr(0, pos);
149 run_to = args[argidx].substr(pos+1);
150 continue;
151 }
152 if (args[argidx] == "-noflatten") {
153 flatten = false;
154 continue;
155 }
156 if (args[argidx] == "-retime") {
157 retime = true;
158 continue;
159 }
160 break;
161 }
162 extra_args(args, argidx, design);
163
164 if (!design->full_selection())
165 log_cmd_error("This comannd only operates on fully selected designs!\n");
166
167 if (part != "SLG46140V" && part != "SLG46620V" && part != "SLG46621V")
168 log_cmd_error("Invalid part name: '%s'\n", part.c_str());
169
170 bool active = run_from.empty();
171
172 log_header(design, "Executing SYNTH_GREENPAK4 pass.\n");
173 log_push();
174
175 if (check_label(active, run_from, run_to, "begin"))
176 {
177 Pass::call(design, "read_verilog -lib +/greenpak4/cells_sim.v");
178 Pass::call(design, stringf("hierarchy -check %s", top_opt.c_str()));
179 }
180
181 if (flatten && check_label(active, run_from, run_to, "flatten"))
182 {
183 Pass::call(design, "proc");
184 Pass::call(design, "flatten");
185 Pass::call(design, "tribuf -logic");
186 }
187
188 if (check_label(active, run_from, run_to, "coarse"))
189 {
190 Pass::call(design, "synth -run coarse");
191 }
192
193 if (check_label(active, run_from, run_to, "fine"))
194 {
195 Pass::call(design, "greenpak4_counters");
196 Pass::call(design, "clean");
197 Pass::call(design, "opt -fast -mux_undef -undriven -fine");
198 Pass::call(design, "memory_map");
199 Pass::call(design, "opt -undriven -fine");
200 Pass::call(design, "techmap");
201 Pass::call(design, "dfflibmap -prepare -liberty +/greenpak4/gp_dff.lib");
202 Pass::call(design, "opt -fast");
203 if (retime)
204 Pass::call(design, "abc -dff");
205 }
206
207 if (check_label(active, run_from, run_to, "map_luts"))
208 {
209 if (part == "SLG46140V") Pass::call(design, "nlutmap -luts 0,6,8,2");
210 if (part == "SLG46620V") Pass::call(design, "nlutmap -luts 2,8,16,2");
211 if (part == "SLG46621V") Pass::call(design, "nlutmap -luts 2,8,16,2");
212 Pass::call(design, "clean");
213 }
214
215 if (check_label(active, run_from, run_to, "map_cells"))
216 {
217 Pass::call(design, "dfflibmap -liberty +/greenpak4/gp_dff.lib");
218 Pass::call(design, "techmap -map +/greenpak4/cells_map.v");
219 Pass::call(design, "dffinit -ff GP_DFF Q INIT");
220 Pass::call(design, "dffinit -ff GP_DFFR Q INIT");
221 Pass::call(design, "dffinit -ff GP_DFFS Q INIT");
222 Pass::call(design, "dffinit -ff GP_DFFSR Q INIT");
223 Pass::call(design, "clean");
224 }
225
226 if (check_label(active, run_from, run_to, "check"))
227 {
228 Pass::call(design, "hierarchy -check");
229 Pass::call(design, "stat");
230 Pass::call(design, "check -noinit");
231 }
232
233 if (check_label(active, run_from, run_to, "json"))
234 {
235 Pass::call(design, "splitnets");
236 if (!json_file.empty())
237 Pass::call(design, stringf("write_json %s", json_file.c_str()));
238 }
239
240 log_pop();
241 }
242 } SynthGreenPAK4Pass;
243
244 PRIVATE_NAMESPACE_END