2013-03-23 04:58:14 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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/rtlil.h"
|
|
|
|
#include "kernel/register.h"
|
|
|
|
#include "kernel/sigtools.h"
|
|
|
|
#include "kernel/celltypes.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
#include <string>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
|
|
|
|
static std::string netname(std::set<std::string> &conntypes_code, std::set<std::string> &celltypes_code, std::set<std::string> &constcells_code, RTLIL::SigSpec sig)
|
|
|
|
{
|
2014-07-24 15:47:57 -05:00
|
|
|
if (!sig.is_fully_const() && !sig.is_wire())
|
2013-03-23 04:58:14 -05:00
|
|
|
log_error("Can't export composite or non-word-wide signal %s.\n", log_signal(sig));
|
|
|
|
|
2014-07-22 13:15:14 -05:00
|
|
|
conntypes_code.insert(stringf("conntype b%d %d 2 %d\n", sig.size(), sig.size(), sig.size()));
|
2013-03-23 04:58:14 -05:00
|
|
|
|
2014-07-24 15:47:57 -05:00
|
|
|
if (sig.is_fully_const()) {
|
2014-07-22 13:15:14 -05:00
|
|
|
celltypes_code.insert(stringf("celltype CONST_%d b%d *CONST cfg:%d VALUE\n", sig.size(), sig.size(), sig.size()));
|
2014-07-24 15:47:57 -05:00
|
|
|
constcells_code.insert(stringf("node CONST_%d_0x%x CONST_%d CONST CONST_%d_0x%x VALUE 0x%x\n",
|
|
|
|
sig.size(), sig.as_int(), sig.size(), sig.size(), sig.as_int(), sig.as_int()));
|
|
|
|
return stringf("CONST_%d_0x%x", sig.size(), sig.as_int());
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
|
2014-07-24 15:47:57 -05:00
|
|
|
return RTLIL::unescape_id(sig.as_wire()->name);
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct IntersynthBackend : public Backend {
|
|
|
|
IntersynthBackend() : Backend("intersynth", "write design to InterSynth netlist file") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
2013-03-23 06:02:09 -05:00
|
|
|
log(" write_intersynth [options] [filename]\n");
|
2013-03-23 04:58:14 -05:00
|
|
|
log("\n");
|
|
|
|
log("Write the current design to an 'intersynth' netlist file. InterSynth is\n");
|
|
|
|
log("a tool for Coarse-Grain Example-Driven Interconnect Synthesis.\n");
|
|
|
|
log("\n");
|
2013-03-24 06:05:25 -05:00
|
|
|
log(" -notypes\n");
|
|
|
|
log(" do not generate celltypes and conntypes commands. i.e. just output\n");
|
|
|
|
log(" the netlists. this is used for postsilicon synthesis.\n");
|
|
|
|
log("\n");
|
2013-03-23 06:02:09 -05:00
|
|
|
log(" -lib <verilog_or_ilang_file>\n");
|
2013-03-24 06:05:25 -05:00
|
|
|
log(" Use the specified library file for determining whether cell ports are\n");
|
|
|
|
log(" inputs or outputs. This option can be used multiple times to specify\n");
|
|
|
|
log(" more than one library.\n");
|
2013-03-23 06:02:09 -05:00
|
|
|
log("\n");
|
2013-09-03 12:10:11 -05:00
|
|
|
log(" -selected\n");
|
|
|
|
log(" only write selected modules. modules must be selected entirely or\n");
|
|
|
|
log(" not at all.\n");
|
|
|
|
log("\n");
|
2013-03-23 04:58:14 -05:00
|
|
|
log("http://www.clifford.at/intersynth/\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
|
|
|
virtual void execute(FILE *&f, std::string filename, std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
log_header("Executing INTERSYNTH backend.\n");
|
2013-03-23 06:02:09 -05:00
|
|
|
log_push();
|
|
|
|
|
|
|
|
std::vector<std::string> libfiles;
|
|
|
|
std::vector<RTLIL::Design*> libs;
|
2013-03-24 06:05:25 -05:00
|
|
|
bool flag_notypes = false;
|
2013-09-03 12:10:11 -05:00
|
|
|
bool selected = false;
|
2013-03-23 06:02:09 -05:00
|
|
|
|
|
|
|
size_t argidx;
|
|
|
|
for (argidx = 1; argidx < args.size(); argidx++)
|
|
|
|
{
|
2013-03-24 06:05:25 -05:00
|
|
|
if (args[argidx] == "-notypes") {
|
|
|
|
flag_notypes = true;
|
|
|
|
continue;
|
|
|
|
}
|
2013-03-23 06:02:09 -05:00
|
|
|
if (args[argidx] == "-lib" && argidx+1 < args.size()) {
|
|
|
|
libfiles.push_back(args[++argidx]);
|
|
|
|
continue;
|
|
|
|
}
|
2013-09-03 12:10:11 -05:00
|
|
|
if (args[argidx] == "-selected") {
|
|
|
|
selected = true;
|
|
|
|
continue;
|
|
|
|
}
|
2013-03-23 06:02:09 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
extra_args(f, filename, args, argidx);
|
|
|
|
|
2013-03-23 04:58:14 -05:00
|
|
|
log("Output filename: %s\n", filename.c_str());
|
|
|
|
|
2013-03-23 06:02:09 -05:00
|
|
|
for (auto filename : libfiles) {
|
|
|
|
FILE *f = fopen(filename.c_str(), "rt");
|
|
|
|
if (f == NULL)
|
|
|
|
log_error("Can't open lib file `%s'.\n", filename.c_str());
|
|
|
|
RTLIL::Design *lib = new RTLIL::Design;
|
|
|
|
Frontend::frontend_call(lib, f, filename, (filename.size() > 3 && filename.substr(filename.size()-3) == ".il") ? "ilang" : "verilog");
|
|
|
|
libs.push_back(lib);
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (libs.size() > 0)
|
|
|
|
log_header("Continuing INTERSYNTH backend.\n");
|
|
|
|
|
2013-03-23 04:58:14 -05:00
|
|
|
std::set<std::string> conntypes_code, celltypes_code;
|
|
|
|
std::string netlists_code;
|
|
|
|
CellTypes ct(design);
|
|
|
|
|
2013-03-23 06:02:09 -05:00
|
|
|
for (auto lib : libs)
|
|
|
|
ct.setup_design(lib);
|
|
|
|
|
2013-03-23 04:58:14 -05:00
|
|
|
for (auto module_it : design->modules)
|
|
|
|
{
|
|
|
|
RTLIL::Module *module = module_it.second;
|
|
|
|
SigMap sigmap(module);
|
|
|
|
|
2013-11-22 08:01:12 -06:00
|
|
|
if (module->get_bool_attribute("\\blackbox"))
|
2013-09-03 12:10:11 -05:00
|
|
|
continue;
|
2013-03-23 04:58:14 -05:00
|
|
|
if (module->memories.size() == 0 && module->processes.size() == 0 && module->cells.size() == 0)
|
|
|
|
continue;
|
|
|
|
|
2013-09-03 12:10:11 -05:00
|
|
|
if (selected && !design->selected_whole_module(module->name)) {
|
|
|
|
if (design->selected_module(module->name))
|
|
|
|
log_cmd_error("Can't handle partially selected module %s!\n", RTLIL::id2cstr(module->name));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-03-23 13:01:58 -05:00
|
|
|
log("Generating netlist %s.\n", RTLIL::id2cstr(module->name));
|
2013-03-23 04:58:14 -05:00
|
|
|
|
|
|
|
if (module->memories.size() != 0 || module->processes.size() != 0)
|
|
|
|
log_error("Can't generate a netlist for a module with unprocessed memories or processes!\n");
|
|
|
|
|
|
|
|
std::set<std::string> constcells_code;
|
2014-01-25 13:16:38 -06:00
|
|
|
netlists_code += stringf("# Netlist of module %s\n", RTLIL::id2cstr(module->name));
|
2013-03-23 13:01:58 -05:00
|
|
|
netlists_code += stringf("netlist %s\n", RTLIL::id2cstr(module->name));
|
2013-03-23 04:58:14 -05:00
|
|
|
|
2014-01-25 13:16:38 -06:00
|
|
|
// Module Ports: "std::set<string> celltypes_code" prevents duplicate top level ports
|
2013-03-23 04:58:14 -05:00
|
|
|
for (auto wire_it : module->wires) {
|
|
|
|
RTLIL::Wire *wire = wire_it.second;
|
|
|
|
if (wire->port_input || wire->port_output) {
|
|
|
|
celltypes_code.insert(stringf("celltype !%s b%d %sPORT\n" "%s %s %d %s PORT\n",
|
2013-03-23 13:01:58 -05:00
|
|
|
RTLIL::id2cstr(wire->name), wire->width, wire->port_input ? "*" : "",
|
|
|
|
wire->port_input ? "input" : "output", RTLIL::id2cstr(wire->name), wire->width, RTLIL::id2cstr(wire->name)));
|
|
|
|
netlists_code += stringf("node %s %s PORT %s\n", RTLIL::id2cstr(wire->name), RTLIL::id2cstr(wire->name),
|
2013-03-23 04:58:14 -05:00
|
|
|
netname(conntypes_code, celltypes_code, constcells_code, sigmap(wire)).c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-25 13:16:38 -06:00
|
|
|
// Submodules: "std::set<string> celltypes_code" prevents duplicate cell types
|
2013-03-23 04:58:14 -05:00
|
|
|
for (auto cell_it : module->cells)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = cell_it.second;
|
|
|
|
std::string celltype_code, node_code;
|
|
|
|
|
2013-03-23 06:02:09 -05:00
|
|
|
if (!ct.cell_known(cell->type))
|
2013-03-23 13:01:58 -05:00
|
|
|
log_error("Found unknown cell type %s in module!\n", RTLIL::id2cstr(cell->type));
|
2013-03-23 06:02:09 -05:00
|
|
|
|
2013-03-23 13:01:58 -05:00
|
|
|
celltype_code = stringf("celltype %s", RTLIL::id2cstr(cell->type));
|
|
|
|
node_code = stringf("node %s %s", RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type));
|
2013-03-23 04:58:14 -05:00
|
|
|
for (auto &port : cell->connections) {
|
|
|
|
RTLIL::SigSpec sig = sigmap(port.second);
|
2014-07-22 13:15:14 -05:00
|
|
|
if (sig.size() != 0) {
|
|
|
|
conntypes_code.insert(stringf("conntype b%d %d 2 %d\n", sig.size(), sig.size(), sig.size()));
|
|
|
|
celltype_code += stringf(" b%d %s%s", sig.size(), ct.cell_output(cell->type, port.first) ? "*" : "", RTLIL::id2cstr(port.first));
|
2013-11-03 02:00:51 -06:00
|
|
|
node_code += stringf(" %s %s", RTLIL::id2cstr(port.first), netname(conntypes_code, celltypes_code, constcells_code, sig).c_str());
|
|
|
|
}
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
for (auto ¶m : cell->parameters) {
|
2013-03-23 13:01:58 -05:00
|
|
|
celltype_code += stringf(" cfg:%d %s", int(param.second.bits.size()), RTLIL::id2cstr(param.first));
|
2013-03-23 04:58:14 -05:00
|
|
|
if (param.second.bits.size() != 32) {
|
2013-03-23 13:01:58 -05:00
|
|
|
node_code += stringf(" %s '", RTLIL::id2cstr(param.first));
|
2013-03-23 04:58:14 -05:00
|
|
|
for (int i = param.second.bits.size()-1; i >= 0; i--)
|
|
|
|
node_code += param.second.bits[i] == RTLIL::S1 ? "1" : "0";
|
|
|
|
} else
|
2013-03-23 13:01:58 -05:00
|
|
|
node_code += stringf(" %s 0x%x", RTLIL::id2cstr(param.first), param.second.as_int());
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
celltypes_code.insert(celltype_code + "\n");
|
|
|
|
netlists_code += node_code + "\n";
|
|
|
|
}
|
2013-03-23 06:02:09 -05:00
|
|
|
|
2014-01-25 13:16:38 -06:00
|
|
|
if (constcells_code.size() > 0)
|
|
|
|
netlists_code += "# constant cells\n";
|
2013-03-23 06:02:09 -05:00
|
|
|
for (auto code : constcells_code)
|
|
|
|
netlists_code += code;
|
2014-01-25 13:16:38 -06:00
|
|
|
netlists_code += "\n";
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
|
2013-03-24 06:05:25 -05:00
|
|
|
if (!flag_notypes) {
|
2014-01-25 13:16:38 -06:00
|
|
|
fprintf(f, "### Connection Types\n");
|
2013-03-24 06:05:25 -05:00
|
|
|
for (auto code : conntypes_code)
|
|
|
|
fprintf(f, "%s", code.c_str());
|
2014-01-25 13:16:38 -06:00
|
|
|
fprintf(f, "\n### Cell Types\n");
|
2013-03-24 06:05:25 -05:00
|
|
|
for (auto code : celltypes_code)
|
|
|
|
fprintf(f, "%s", code.c_str());
|
|
|
|
}
|
2014-01-25 13:16:38 -06:00
|
|
|
fprintf(f, "\n### Netlists\n");
|
2013-03-23 04:58:14 -05:00
|
|
|
fprintf(f, "%s", netlists_code.c_str());
|
2013-03-23 06:02:09 -05:00
|
|
|
|
|
|
|
for (auto lib : libs)
|
|
|
|
delete lib;
|
|
|
|
|
|
|
|
log_pop();
|
2013-03-23 04:58:14 -05:00
|
|
|
}
|
|
|
|
} IntersynthBackend;
|
|
|
|
|