mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-06 22:36:05 +00:00
Merge 3d72dd198f into 25f2a88770
This commit is contained in:
commit
875ce1de72
11 changed files with 914 additions and 258 deletions
|
|
@ -57,3 +57,4 @@ OBJS += passes/cmds/abstract.o
|
|||
OBJS += passes/cmds/test_select.o
|
||||
OBJS += passes/cmds/timeest.o
|
||||
OBJS += passes/cmds/linecoverage.o
|
||||
OBJS += passes/cmds/icell_liberty.o
|
||||
|
|
|
|||
|
|
@ -51,6 +51,9 @@ struct BoxDerivePass : Pass {
|
|||
log(" replaces the internal Yosys naming scheme in which the names of derived\n");
|
||||
log(" modules start with '$paramod$')\n");
|
||||
log("\n");
|
||||
log(" -apply_derived_type\n");
|
||||
log(" use the derived modules\n");
|
||||
log("\n");
|
||||
}
|
||||
void execute(std::vector<std::string> args, RTLIL::Design *d) override
|
||||
{
|
||||
|
|
@ -59,11 +62,14 @@ struct BoxDerivePass : Pass {
|
|||
size_t argidx;
|
||||
IdString naming_attr;
|
||||
IdString base_name;
|
||||
bool apply_mode = false;
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
if (args[argidx] == "-naming_attr" && argidx + 1 < args.size())
|
||||
naming_attr = RTLIL::escape_id(args[++argidx]);
|
||||
else if (args[argidx] == "-base" && argidx + 1 < args.size())
|
||||
base_name = RTLIL::escape_id(args[++argidx]);
|
||||
else if (args[argidx] == "-apply")
|
||||
apply_mode = true;
|
||||
else
|
||||
break;
|
||||
}
|
||||
|
|
@ -90,24 +96,29 @@ struct BoxDerivePass : Pass {
|
|||
|
||||
auto index = std::make_pair(base->name, cell->parameters);
|
||||
|
||||
if (cell->parameters.empty() || done.count(index))
|
||||
if (cell->parameters.empty())
|
||||
continue;
|
||||
|
||||
IdString derived_type = base->derive(d, cell->parameters);
|
||||
Module *derived = d->module(derived_type);
|
||||
log_assert(derived && "Failed to derive module\n");
|
||||
log_debug("derived %s\n", derived_type);
|
||||
if (!done.count(index)) {
|
||||
IdString derived_type = base->derive(d, cell->parameters);
|
||||
Module *derived = d->module(derived_type);
|
||||
log_assert(derived && "Failed to derive module\n");
|
||||
log("derived %s\n", derived_type);
|
||||
|
||||
if (!naming_attr.empty() && derived->has_attribute(naming_attr)) {
|
||||
IdString new_name = RTLIL::escape_id(derived->get_string_attribute(naming_attr));
|
||||
if (!new_name.isPublic())
|
||||
log_error("Derived module %s cannot be renamed to private name %s.\n",
|
||||
log_id(derived), log_id(new_name));
|
||||
derived->attributes.erase(naming_attr);
|
||||
d->rename(derived, new_name);
|
||||
if (!naming_attr.empty() && derived->has_attribute(naming_attr)) {
|
||||
IdString new_name = RTLIL::escape_id(derived->get_string_attribute(naming_attr));
|
||||
if (!new_name.isPublic())
|
||||
log_error("Derived module %s cannot be renamed to private name %s.\n",
|
||||
log_id(derived), log_id(new_name));
|
||||
derived->attributes.erase(naming_attr);
|
||||
d->rename(derived, new_name);
|
||||
}
|
||||
|
||||
done[index] = derived;
|
||||
}
|
||||
|
||||
done[index] = derived;
|
||||
if (apply_mode)
|
||||
cell->type = done[index]->name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,6 +22,27 @@
|
|||
USING_YOSYS_NAMESPACE
|
||||
PRIVATE_NAMESPACE_BEGIN
|
||||
|
||||
static void publish(RTLIL::IdString& id) {
|
||||
if (id.begins_with("$")) {
|
||||
log_debug("publishing %s\n", id.c_str());
|
||||
id = "\\" + id.str();
|
||||
log_debug("published %s\n", id.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
static void publish_design(RTLIL::Design* design) {
|
||||
auto saved_modules = design->modules_;
|
||||
design->modules_.clear();
|
||||
for (auto& [name, mod] : saved_modules) {
|
||||
publish(mod->name);
|
||||
design->modules_[mod->name] = mod;
|
||||
for (auto* cell : mod->cells()) {
|
||||
publish(cell->type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
struct ChtypePass : public Pass {
|
||||
ChtypePass() : Pass("chtype", "change type of cells in the design") { }
|
||||
void help() override
|
||||
|
|
@ -38,12 +59,16 @@ struct ChtypePass : public Pass {
|
|||
log(" -map <old_type> <new_type>\n");
|
||||
log(" change cells types that match <old_type> to <new_type>\n");
|
||||
log("\n");
|
||||
log(" -publish_icells\n");
|
||||
log(" change internal cells types to public types\n");
|
||||
log("\n");
|
||||
log("\n");
|
||||
}
|
||||
void execute(std::vector<std::string> args, RTLIL::Design *design) override
|
||||
{
|
||||
IdString set_type;
|
||||
dict<IdString, IdString> map_types;
|
||||
bool publish_mode = false;
|
||||
|
||||
size_t argidx;
|
||||
for (argidx = 1; argidx < args.size(); argidx++)
|
||||
|
|
@ -58,10 +83,17 @@ struct ChtypePass : public Pass {
|
|||
map_types[old_type] = new_type;
|
||||
continue;
|
||||
}
|
||||
if (args[argidx] == "-publish_icells") {
|
||||
publish_mode = true;
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
extra_args(args, argidx, design);
|
||||
|
||||
if (publish_mode)
|
||||
publish_design(design);
|
||||
|
||||
for (auto module : design->selected_modules())
|
||||
{
|
||||
for (auto cell : module->selected_cells())
|
||||
|
|
|
|||
217
passes/cmds/icell_liberty.cc
Normal file
217
passes/cmds/icell_liberty.cc
Normal file
|
|
@ -0,0 +1,217 @@
|
|||
#include "kernel/yosys.h"
|
||||
#include "kernel/celltypes.h"
|
||||
#include "kernel/ff.h"
|
||||
|
||||
USING_YOSYS_NAMESPACE
|
||||
PRIVATE_NAMESPACE_BEGIN
|
||||
|
||||
struct LibertyStubber {
|
||||
CellTypes ct;
|
||||
LibertyStubber() {
|
||||
ct.setup();
|
||||
ct.setup_internals_ff();
|
||||
}
|
||||
void liberty_prefix(std::ostream& f)
|
||||
{
|
||||
f << "/*\n";
|
||||
f << stringf("\tModels interfaces of select Yosys internal cell.\n");
|
||||
f << stringf("\tLikely contains INCORRECT POLARITIES.\n");
|
||||
f << stringf("\tImpractical for any simulation, synthesis, or timing.\n");
|
||||
f << stringf("\tIntended purely for SDC expansion.\n");
|
||||
f << stringf("\tDo not microwave or tumble dry.\n");
|
||||
f << stringf("\tGenerated by %s\n", yosys_maybe_version());
|
||||
f << "*/\n";
|
||||
f << "library (yosys) {\n";
|
||||
f << "\tinput_threshold_pct_fall : 50;\n";
|
||||
f << "\tinput_threshold_pct_rise : 50;\n";
|
||||
f << "\toutput_threshold_pct_fall : 50;\n";
|
||||
f << "\toutput_threshold_pct_rise : 50;\n";
|
||||
f << "\tslew_lower_threshold_pct_fall : 1;\n";
|
||||
f << "\tslew_lower_threshold_pct_rise : 1;\n";
|
||||
f << "\tslew_upper_threshold_pct_fall : 99;\n";
|
||||
f << "\tslew_upper_threshold_pct_rise : 99;\n";
|
||||
}
|
||||
void liberty_suffix(std::ostream& f)
|
||||
{
|
||||
f << "}\n";
|
||||
}
|
||||
struct LibertyItemizer {
|
||||
std::ostream& f;
|
||||
int indent;
|
||||
LibertyItemizer(std::ostream& f) : f(f), indent(0) {};
|
||||
void item(std::string key, std::string val)
|
||||
{
|
||||
f << std::string(indent, '\t') << key << " : \"" << val << "\";\n";
|
||||
}
|
||||
};
|
||||
void liberty_flop(Module* base, Module* derived, std::ostream& f)
|
||||
{
|
||||
auto base_name = base->name.str().substr(1);
|
||||
auto derived_name = derived->name.str().substr(1);
|
||||
|
||||
FfTypeData ffType(base_name);
|
||||
LibertyItemizer i(f);
|
||||
|
||||
if (ffType.has_gclk) {
|
||||
log_warning("Formal flip flop %s can't be modeled\n", base_name.c_str());
|
||||
return;
|
||||
}
|
||||
if (ffType.has_ce) {
|
||||
log_warning("DFFE %s can't be modeled\n", base_name.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
f << "\tcell (\"" << derived_name << "\") {\n";
|
||||
auto& base_type = ct.cell_types[base_name];
|
||||
i.indent = 3;
|
||||
auto sorted_ports = derived->ports;
|
||||
// Hack for CLK and C coming before Q does
|
||||
auto cmp = [](IdString l, IdString r) { return l.str() < r.str(); };
|
||||
std::sort(sorted_ports.begin(), sorted_ports.end(), cmp);
|
||||
std::string clock_pin_name = "";
|
||||
for (auto x : sorted_ports) {
|
||||
std::string port_name = RTLIL::unescape_id(x);
|
||||
bool is_input = base_type.inputs.count(x);
|
||||
bool is_output = base_type.outputs.count(x);
|
||||
f << "\t\tpin (" << RTLIL::unescape_id(x.str()) << ") {\n";
|
||||
if (is_input && !is_output) {
|
||||
i.item("direction", "input");
|
||||
} else if (!is_input && is_output) {
|
||||
i.item("direction", "output");
|
||||
} else {
|
||||
i.item("direction", "inout");
|
||||
}
|
||||
if (port_name == "CLK" || port_name == "C") {
|
||||
i.item("clock", "true");
|
||||
clock_pin_name = port_name;
|
||||
}
|
||||
if (port_name == "Q") {
|
||||
i.item("function", "IQ");
|
||||
f << "\t\t\ttiming () {\n";
|
||||
i.indent++;
|
||||
log_assert(clock_pin_name.size());
|
||||
i.item("related_pin", clock_pin_name);
|
||||
i.indent--;
|
||||
f << "\t\t\t}\n";
|
||||
}
|
||||
f << "\t\t}\n";
|
||||
}
|
||||
|
||||
f << "\t\tff (\"IQ\",\"IQ_N\") {\n";
|
||||
i.indent = 3;
|
||||
// TODO polarities?
|
||||
if (ffType.has_clk) {
|
||||
auto pin = ffType.is_fine ? "C" : "CLK";
|
||||
i.item("clocked_on", pin);
|
||||
}
|
||||
if (ffType.has_arst) {
|
||||
auto meaning = (ffType.val_arst == State::S1) ? "preset" : "clear";
|
||||
auto pin = ffType.is_fine ? "R" : "ARST";
|
||||
i.item(meaning, pin);
|
||||
}
|
||||
auto next_state = ffType.has_ce ? "D & EN" : "D";
|
||||
i.item("next_state", next_state);
|
||||
f << "\t\t}\n";
|
||||
|
||||
|
||||
// bool has_aload;
|
||||
// bool has_srst;
|
||||
// bool has_arst;
|
||||
// bool has_sr;
|
||||
f << "\t}\n";
|
||||
}
|
||||
void liberty_cell(Module* base, Module* derived, std::ostream& f)
|
||||
{
|
||||
auto base_name = base->name.str().substr(1);
|
||||
auto derived_name = derived->name.str().substr(1);
|
||||
if (!ct.cell_types.count(base_name)) {
|
||||
log_debug("skip skeleton for %s\n", base_name.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
if (RTLIL::builtin_ff_cell_types().count(base_name))
|
||||
return liberty_flop(base, derived, f);
|
||||
|
||||
auto& base_type = ct.cell_types[base_name];
|
||||
f << "\tcell (\"" << derived_name << "\") {\n";
|
||||
for (auto x : derived->ports) {
|
||||
bool is_input = base_type.inputs.count(x);
|
||||
bool is_output = base_type.outputs.count(x);
|
||||
f << "\t\tpin (" << RTLIL::unescape_id(x.str()) << ") {\n";
|
||||
if (is_input && !is_output) {
|
||||
f << "\t\t\tdirection : input;\n";
|
||||
} else if (!is_input && is_output) {
|
||||
f << "\t\t\tdirection : output;\n";
|
||||
} else {
|
||||
f << "\t\t\tdirection : inout;\n";
|
||||
}
|
||||
f << "\t\t}\n";
|
||||
}
|
||||
f << "\t}\n";
|
||||
}
|
||||
};
|
||||
|
||||
struct IcellLiberty : Pass {
|
||||
IcellLiberty() : Pass("icell_liberty", "write Liberty interfaces for used internal cells") {}
|
||||
void help() override
|
||||
{
|
||||
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
||||
log("\n");
|
||||
log(" icell_liberty <liberty_file>\n"); // TODO
|
||||
log("\n");
|
||||
log("\n");
|
||||
}
|
||||
void execute(std::vector<std::string> args, RTLIL::Design *d) override
|
||||
{
|
||||
log_header(d, "Executing ICELL_LIBERTY pass.\n");
|
||||
|
||||
size_t argidx;
|
||||
IdString naming_attr;
|
||||
std::string liberty_filename;
|
||||
std::ofstream* liberty_file = new std::ofstream;
|
||||
|
||||
for (argidx = 1; argidx < args.size(); argidx++) {
|
||||
break;
|
||||
}
|
||||
if (argidx < args.size())
|
||||
liberty_filename = args[argidx++];
|
||||
else
|
||||
log_error("no Liberty filename specified\n");
|
||||
|
||||
// extra_args(args, argidx, d);
|
||||
|
||||
if (liberty_filename.size()) {
|
||||
liberty_file->open(liberty_filename.c_str());
|
||||
if (liberty_file->fail()) {
|
||||
delete liberty_file;
|
||||
log_error("Can't open file `%s' for writing: %s\n", liberty_filename.c_str(), strerror(errno));
|
||||
}
|
||||
}
|
||||
|
||||
pool<RTLIL::IdString> done;
|
||||
LibertyStubber stubber = {};
|
||||
|
||||
if (liberty_file)
|
||||
stubber.liberty_prefix(*liberty_file);
|
||||
|
||||
for (auto module : d->selected_modules()) {
|
||||
for (auto cell : module->selected_cells()) {
|
||||
Module *inst_module = d->module(cell->type);
|
||||
if (!inst_module || !inst_module->get_blackbox_attribute())
|
||||
continue;
|
||||
Module *base = inst_module;
|
||||
if (!done.count(base->name)) {
|
||||
stubber.liberty_cell(base, base, *liberty_file);
|
||||
done.insert(base->name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (liberty_file) {
|
||||
stubber.liberty_suffix(*liberty_file);
|
||||
delete liberty_file;
|
||||
}
|
||||
}
|
||||
} IcellLiberty;
|
||||
|
||||
PRIVATE_NAMESPACE_END
|
||||
Loading…
Add table
Add a link
Reference in a new issue