2018-05-26 20:27:21 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
2018-06-22 22:19:17 +08:00
|
|
|
* Copyright (C) 2018 Clifford Wolf <clifford@symbioticeda.com>
|
2018-05-26 20:27:21 +08: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
2018-06-08 17:17:04 +08:00
|
|
|
|
2018-06-13 01:56:03 +08:00
|
|
|
#ifdef MAIN_EXECUTABLE
|
2018-06-08 17:17:04 +08:00
|
|
|
|
2018-06-23 20:32:18 +08:00
|
|
|
#ifndef NO_GUI
|
2018-06-06 03:03:06 +08:00
|
|
|
#include <QApplication>
|
2018-06-23 20:32:18 +08:00
|
|
|
#include "application.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#endif
|
|
|
|
#ifndef NO_PYTHON
|
|
|
|
#include "pybindings.h"
|
|
|
|
#endif
|
|
|
|
|
2018-06-11 15:33:42 +08:00
|
|
|
#include <boost/filesystem/convenience.hpp>
|
2018-06-06 03:03:06 +08:00
|
|
|
#include <boost/program_options.hpp>
|
2018-06-24 20:38:45 +08:00
|
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
|
|
#include <boost/property_tree/ptree.hpp>
|
2018-06-07 19:10:53 +08:00
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2018-06-10 17:56:07 +08:00
|
|
|
#include "bitstream.h"
|
2018-06-17 18:53:39 +08:00
|
|
|
#include "design_utils.h"
|
2018-06-07 02:44:54 +08:00
|
|
|
#include "jsonparse.h"
|
2018-06-07 20:36:35 +08:00
|
|
|
#include "log.h"
|
2018-06-12 02:12:57 +08:00
|
|
|
#include "nextpnr.h"
|
2018-06-13 18:30:15 +08:00
|
|
|
#include "pcf.h"
|
2018-06-20 19:01:22 +08:00
|
|
|
#include "timing.h"
|
2018-06-20 19:40:13 +08:00
|
|
|
#include "version.h"
|
2018-05-26 20:27:21 +08:00
|
|
|
|
2018-06-22 19:10:27 +08:00
|
|
|
USING_NEXTPNR_NAMESPACE
|
|
|
|
|
2018-07-20 20:06:53 +08:00
|
|
|
void conflicting_options(const boost::program_options::variables_map &vm, const char *opt1, const char *opt2)
|
|
|
|
{
|
2018-07-21 18:22:41 +08:00
|
|
|
if (vm.count(opt1) && !vm[opt1].defaulted() && vm.count(opt2) && !vm[opt2].defaulted()) {
|
2018-07-22 06:50:49 +08:00
|
|
|
std::string msg = "Conflicting options '" + std::string(opt1) + "' and '" + std::string(opt1) + "'.";
|
|
|
|
log_error("%s\n", msg.c_str());
|
2018-07-21 18:22:41 +08:00
|
|
|
}
|
2018-07-20 20:06:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-06 03:03:06 +08:00
|
|
|
int main(int argc, char *argv[])
|
2018-05-26 20:27:21 +08:00
|
|
|
{
|
2018-06-07 19:10:53 +08:00
|
|
|
try {
|
2018-06-21 23:44:18 +08:00
|
|
|
namespace po = boost::program_options;
|
2018-06-24 20:38:45 +08:00
|
|
|
namespace pt = boost::property_tree;
|
2018-06-21 23:44:18 +08:00
|
|
|
int rc = 0;
|
|
|
|
std::string str;
|
|
|
|
|
|
|
|
log_files.push_back(stdout);
|
|
|
|
|
|
|
|
po::options_description options("Allowed options");
|
|
|
|
options.add_options()("help,h", "show help");
|
|
|
|
options.add_options()("verbose,v", "verbose output");
|
|
|
|
options.add_options()("debug", "debug output");
|
|
|
|
options.add_options()("force,f", "keep running after errors");
|
2018-06-23 20:32:18 +08:00
|
|
|
#ifndef NO_GUI
|
2018-06-21 23:44:18 +08:00
|
|
|
options.add_options()("gui", "start gui");
|
2018-06-23 20:32:18 +08:00
|
|
|
#endif
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("pack-only", "pack design only without placement or routing");
|
2018-06-21 23:44:18 +08:00
|
|
|
|
2018-06-23 20:32:18 +08:00
|
|
|
po::positional_options_description pos;
|
|
|
|
#ifndef NO_PYTHON
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("run", po::value<std::vector<std::string>>(), "python file to execute");
|
2018-06-23 20:32:18 +08:00
|
|
|
pos.add("run", -1);
|
|
|
|
#endif
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("json", po::value<std::string>(), "JSON design file to ingest");
|
|
|
|
options.add_options()("pcf", po::value<std::string>(), "PCF constraints file to ingest");
|
|
|
|
options.add_options()("asc", po::value<std::string>(), "asc bitstream file to write");
|
2018-07-20 19:27:21 +08:00
|
|
|
options.add_options()("read", po::value<std::string>(), "asc bitstream file to read");
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("seed", po::value<int>(), "seed value for random number generator");
|
2018-08-01 11:57:36 +08:00
|
|
|
options.add_options()("slack_redist_iter", po::value<int>(),
|
|
|
|
"number of iterations between slack redistribution");
|
2018-08-04 14:18:04 +08:00
|
|
|
options.add_options()("cstrweight", po::value<float>(),
|
|
|
|
"placer weighting for relative constraint satisfaction");
|
2018-08-04 00:31:54 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
options.add_options()("version,V", "show version");
|
|
|
|
options.add_options()("tmfuzz", "run path delay estimate fuzzer");
|
2018-07-23 20:03:23 +08:00
|
|
|
options.add_options()("test", "check architecture database integrity");
|
2018-07-10 19:58:20 +08:00
|
|
|
#ifdef ICE40_HX1K_ONLY
|
|
|
|
options.add_options()("hx1k", "set device type to iCE40HX1K");
|
|
|
|
#else
|
2018-06-21 23:44:18 +08:00
|
|
|
options.add_options()("lp384", "set device type to iCE40LP384");
|
|
|
|
options.add_options()("lp1k", "set device type to iCE40LP1K");
|
|
|
|
options.add_options()("lp8k", "set device type to iCE40LP8K");
|
|
|
|
options.add_options()("hx1k", "set device type to iCE40HX1K");
|
|
|
|
options.add_options()("hx8k", "set device type to iCE40HX8K");
|
|
|
|
options.add_options()("up5k", "set device type to iCE40UP5K");
|
2018-07-10 19:58:20 +08:00
|
|
|
#endif
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("freq", po::value<double>(), "set target frequency for design in MHz");
|
2018-06-23 18:18:44 +08:00
|
|
|
options.add_options()("no-tmdriv", "disable timing-driven placement");
|
2018-06-23 21:28:09 +08:00
|
|
|
options.add_options()("package", po::value<std::string>(), "set device package");
|
2018-06-24 20:38:45 +08:00
|
|
|
options.add_options()("save", po::value<std::string>(), "project file to write");
|
|
|
|
options.add_options()("load", po::value<std::string>(), "project file to read");
|
2018-06-21 23:44:18 +08:00
|
|
|
|
|
|
|
po::variables_map vm;
|
|
|
|
try {
|
2018-06-23 21:28:09 +08:00
|
|
|
po::parsed_options parsed = po::command_line_parser(argc, argv).options(options).positional(pos).run();
|
2018-06-21 23:44:18 +08:00
|
|
|
|
|
|
|
po::store(parsed, vm);
|
|
|
|
|
|
|
|
po::notify(vm);
|
2018-07-20 20:06:53 +08:00
|
|
|
} catch (std::exception &e) {
|
2018-06-21 23:44:18 +08:00
|
|
|
std::cout << e.what() << "\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-07-20 20:06:53 +08:00
|
|
|
conflicting_options(vm, "read", "json");
|
|
|
|
#ifndef ICE40_HX1K_ONLY
|
|
|
|
if ((vm.count("lp384") + vm.count("lp1k") + vm.count("lp8k") + vm.count("hx1k") + vm.count("hx8k") +
|
|
|
|
vm.count("up5k")) > 1)
|
|
|
|
log_error("Only one device type can be set\n");
|
|
|
|
#endif
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("help") || argc == 1) {
|
|
|
|
help:
|
2018-08-01 10:59:27 +08:00
|
|
|
std::cout << boost::filesystem::basename(argv[0])
|
|
|
|
<< " -- Next Generation Place and Route (git "
|
|
|
|
"sha1 " GIT_COMMIT_HASH_STR ")\n";
|
2018-06-21 23:44:18 +08:00
|
|
|
std::cout << "\n";
|
|
|
|
std::cout << options << "\n";
|
|
|
|
return argc != 1;
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("version")) {
|
2018-08-01 10:59:27 +08:00
|
|
|
std::cout << boost::filesystem::basename(argv[0])
|
|
|
|
<< " -- Next Generation Place and Route (git "
|
|
|
|
"sha1 " GIT_COMMIT_HASH_STR ")\n";
|
2018-06-21 23:44:18 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-24 20:38:45 +08:00
|
|
|
if (vm.count("load")) {
|
|
|
|
try {
|
|
|
|
pt::ptree root;
|
|
|
|
std::string filename = vm["load"].as<std::string>();
|
|
|
|
pt::read_json(filename, root);
|
|
|
|
log_info("Loading project %s...\n", filename.c_str());
|
|
|
|
log_break();
|
2018-08-02 12:29:21 +08:00
|
|
|
|
|
|
|
bool isLoadingGui = vm.count("gui") > 0;
|
|
|
|
std::string ascOutput;
|
|
|
|
if (vm.count("asc"))
|
|
|
|
ascOutput = vm["asc"].as<std::string>();
|
2018-06-24 20:38:45 +08:00
|
|
|
vm.clear();
|
|
|
|
|
|
|
|
int version = root.get<int>("project.version");
|
|
|
|
if (version != 1)
|
|
|
|
log_error("Wrong project format version.\n");
|
|
|
|
|
|
|
|
std::string arch_name = root.get<std::string>("project.arch.name");
|
|
|
|
if (arch_name != "ice40")
|
|
|
|
log_error("Unsuported project architecture.\n");
|
|
|
|
|
|
|
|
std::string arch_type = root.get<std::string>("project.arch.type");
|
|
|
|
vm.insert(std::make_pair(arch_type, po::variable_value()));
|
|
|
|
|
|
|
|
std::string arch_package = root.get<std::string>("project.arch.package");
|
|
|
|
vm.insert(std::make_pair("package", po::variable_value(arch_package, false)));
|
|
|
|
|
|
|
|
auto project = root.get_child("project");
|
|
|
|
if (project.count("input")) {
|
|
|
|
auto input = project.get_child("input");
|
|
|
|
if (input.count("json"))
|
|
|
|
vm.insert(std::make_pair("json", po::variable_value(input.get<std::string>("json"), false)));
|
|
|
|
if (input.count("pcf"))
|
|
|
|
vm.insert(std::make_pair("pcf", po::variable_value(input.get<std::string>("pcf"), false)));
|
|
|
|
}
|
|
|
|
if (project.count("params")) {
|
|
|
|
auto params = project.get_child("params");
|
|
|
|
if (params.count("freq"))
|
|
|
|
vm.insert(std::make_pair("freq", po::variable_value(params.get<double>("freq"), false)));
|
|
|
|
if (params.count("seed"))
|
|
|
|
vm.insert(std::make_pair("seed", po::variable_value(params.get<int>("seed"), false)));
|
|
|
|
}
|
2018-08-02 12:29:21 +08:00
|
|
|
if (!ascOutput.empty())
|
|
|
|
vm.insert(std::make_pair("asc", po::variable_value(ascOutput, false)));
|
|
|
|
if (isLoadingGui)
|
|
|
|
vm.insert(std::make_pair("gui", po::variable_value()));
|
2018-06-24 20:38:45 +08:00
|
|
|
po::notify(vm);
|
|
|
|
} catch (...) {
|
|
|
|
log_error("Error loading project file.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
ArchArgs chipArgs;
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("lp384")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::LP384;
|
|
|
|
chipArgs.package = "qn32";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("lp1k")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::LP1K;
|
|
|
|
chipArgs.package = "tq144";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("lp8k")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::LP8K;
|
|
|
|
chipArgs.package = "ct256";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("hx1k")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::HX1K;
|
|
|
|
chipArgs.package = "tq144";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("hx8k")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::HX8K;
|
|
|
|
chipArgs.package = "ct256";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("up5k")) {
|
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
|
|
|
goto help;
|
|
|
|
chipArgs.type = ArchArgs::UP5K;
|
|
|
|
chipArgs.package = "sg48";
|
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (chipArgs.type == ArchArgs::NONE) {
|
|
|
|
chipArgs.type = ArchArgs::HX1K;
|
|
|
|
chipArgs.package = "tq144";
|
|
|
|
}
|
2018-06-07 18:26:02 +08:00
|
|
|
#ifdef ICE40_HX1K_ONLY
|
2018-06-21 23:44:18 +08:00
|
|
|
if (chipArgs.type != ArchArgs::HX1K) {
|
|
|
|
std::cout << "This version of nextpnr-ice40 is built with "
|
|
|
|
"HX1K-support "
|
|
|
|
"only.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2018-06-07 18:26:02 +08:00
|
|
|
#endif
|
2018-06-06 23:08:31 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("package"))
|
|
|
|
chipArgs.package = vm["package"].as<std::string>();
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-24 20:38:45 +08:00
|
|
|
if (vm.count("save")) {
|
|
|
|
Context ctx(chipArgs);
|
|
|
|
std::string filename = vm["save"].as<std::string>();
|
|
|
|
std::ofstream f(filename);
|
|
|
|
pt::ptree root;
|
|
|
|
root.put("project.version", 1);
|
|
|
|
root.put("project.name", boost::filesystem::basename(filename));
|
|
|
|
root.put("project.arch.name", ctx.archId().c_str(&ctx));
|
|
|
|
root.put("project.arch.type", ctx.archArgsToId(chipArgs).c_str(&ctx));
|
|
|
|
root.put("project.arch.package", chipArgs.package);
|
|
|
|
if (vm.count("json"))
|
|
|
|
root.put("project.input.json", vm["json"].as<std::string>());
|
|
|
|
if (vm.count("pcf"))
|
|
|
|
root.put("project.input.pcf", vm["pcf"].as<std::string>());
|
|
|
|
if (vm.count("freq"))
|
|
|
|
root.put("project.params.freq", vm["freq"].as<double>());
|
|
|
|
if (vm.count("seed"))
|
|
|
|
root.put("project.params.seed", vm["seed"].as<int>());
|
|
|
|
pt::write_json(f, root);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
std::unique_ptr<Context> ctx = std::unique_ptr<Context>(new Context(chipArgs));
|
2018-06-23 20:32:18 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("verbose")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->verbose = true;
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-19 19:38:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("debug")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->verbose = true;
|
|
|
|
ctx->debug = true;
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-19 18:49:40 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("force")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->force = true;
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("seed")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->rngseed(vm["seed"].as<int>());
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-20 20:04:10 +08:00
|
|
|
|
2018-08-01 10:07:39 +08:00
|
|
|
if (vm.count("slack_redist_iter")) {
|
|
|
|
ctx->slack_redist_iter = vm["slack_redist_iter"].as<int>();
|
2018-08-04 10:53:32 +08:00
|
|
|
if (vm.count("freq") && vm["freq"].as<double>() == 0) {
|
|
|
|
ctx->auto_freq = true;
|
|
|
|
#ifndef NO_GUI
|
|
|
|
if (!vm.count("gui"))
|
|
|
|
#endif
|
|
|
|
log_warning("Target frequency not specified. Will optimise for max frequency.\n");
|
|
|
|
}
|
2018-08-01 10:07:39 +08:00
|
|
|
}
|
|
|
|
|
2018-08-04 00:31:54 +08:00
|
|
|
if (vm.count("cstrweight")) {
|
|
|
|
ctx->placer_constraintWeight = vm["cstrweight"].as<float>();
|
|
|
|
}
|
|
|
|
|
2018-07-23 20:03:23 +08:00
|
|
|
if (vm.count("test"))
|
|
|
|
ctx->archcheck();
|
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("tmfuzz")) {
|
|
|
|
std::vector<WireId> src_wires, dst_wires;
|
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
/*for (auto w : ctx->getWires())
|
2018-06-21 23:44:18 +08:00
|
|
|
src_wires.push_back(w);*/
|
2018-07-13 15:14:48 +08:00
|
|
|
for (auto b : ctx->getBels()) {
|
|
|
|
if (ctx->getBelType(b) == TYPE_ICESTORM_LC) {
|
2018-07-22 16:59:21 +08:00
|
|
|
src_wires.push_back(ctx->getBelPinWire(b, PIN_O));
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-07-13 15:14:48 +08:00
|
|
|
if (ctx->getBelType(b) == TYPE_SB_IO) {
|
2018-07-22 16:59:21 +08:00
|
|
|
src_wires.push_back(ctx->getBelPinWire(b, PIN_D_IN_0));
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-20 20:04:10 +08:00
|
|
|
}
|
2018-06-21 23:44:18 +08:00
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
for (auto b : ctx->getBels()) {
|
|
|
|
if (ctx->getBelType(b) == TYPE_ICESTORM_LC) {
|
2018-07-22 16:59:21 +08:00
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_I0));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_I1));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_I2));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_I3));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_CEN));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_CIN));
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-07-13 15:14:48 +08:00
|
|
|
if (ctx->getBelType(b) == TYPE_SB_IO) {
|
2018-07-22 16:59:21 +08:00
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_D_OUT_0));
|
|
|
|
dst_wires.push_back(ctx->getBelPinWire(b, PIN_OUTPUT_ENABLE));
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-20 20:04:10 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->shuffle(src_wires);
|
|
|
|
ctx->shuffle(dst_wires);
|
2018-06-21 23:44:18 +08:00
|
|
|
|
2018-06-23 21:28:09 +08:00
|
|
|
for (int i = 0; i < int(src_wires.size()) && i < int(dst_wires.size()); i++) {
|
2018-06-21 23:44:18 +08:00
|
|
|
delay_t actual_delay;
|
|
|
|
WireId src = src_wires[i], dst = dst_wires[i];
|
2018-07-13 15:14:48 +08:00
|
|
|
if (!ctx->getActualRouteDelay(src, dst, actual_delay))
|
2018-06-21 23:44:18 +08:00
|
|
|
continue;
|
2018-07-13 15:14:48 +08:00
|
|
|
printf("%s %s %.3f %.3f %d %d %d %d %d %d\n", ctx->getWireName(src).c_str(ctx.get()),
|
|
|
|
ctx->getWireName(dst).c_str(ctx.get()), ctx->getDelayNS(actual_delay),
|
|
|
|
ctx->getDelayNS(ctx->estimateDelay(src, dst)), ctx->chip_info->wire_data[src.index].x,
|
|
|
|
ctx->chip_info->wire_data[src.index].y, ctx->chip_info->wire_data[src.index].type,
|
|
|
|
ctx->chip_info->wire_data[dst.index].x, ctx->chip_info->wire_data[dst.index].y,
|
|
|
|
ctx->chip_info->wire_data[dst.index].type);
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-20 20:04:10 +08:00
|
|
|
}
|
2018-07-23 20:03:23 +08:00
|
|
|
|
2018-07-25 14:19:24 +08:00
|
|
|
if (vm.count("freq")) {
|
2018-08-04 10:53:32 +08:00
|
|
|
auto freq = vm["freq"].as<double>();
|
|
|
|
if (freq > 0)
|
|
|
|
ctx->target_freq = freq * 1e6;
|
2018-08-01 15:33:52 +08:00
|
|
|
}
|
2018-07-23 20:03:23 +08:00
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->timing_driven = true;
|
|
|
|
if (vm.count("no-tmdriv"))
|
|
|
|
ctx->timing_driven = false;
|
2018-06-20 20:04:10 +08:00
|
|
|
|
2018-07-20 19:27:21 +08:00
|
|
|
if (vm.count("read")) {
|
|
|
|
std::string filename = vm["read"].as<std::string>();
|
|
|
|
std::ifstream f(filename);
|
|
|
|
if (!read_asc(ctx.get(), f))
|
|
|
|
log_error("Loading ASC failed.\n");
|
|
|
|
}
|
|
|
|
|
2018-07-13 15:14:48 +08:00
|
|
|
#ifndef NO_GUI
|
|
|
|
if (vm.count("gui")) {
|
|
|
|
Application a(argc, argv);
|
2018-07-13 18:02:49 +08:00
|
|
|
MainWindow w(std::move(ctx), chipArgs);
|
2018-07-13 15:14:48 +08:00
|
|
|
if (vm.count("json")) {
|
|
|
|
std::string filename = vm["json"].as<std::string>();
|
|
|
|
std::string pcf = "";
|
2018-08-03 00:10:01 +08:00
|
|
|
w.load_json(filename);
|
|
|
|
if (vm.count("pcf")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
pcf = vm["pcf"].as<std::string>();
|
2018-08-03 00:10:01 +08:00
|
|
|
w.load_pcf(pcf);
|
|
|
|
}
|
2018-07-13 15:14:48 +08:00
|
|
|
}
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|
|
|
|
#endif
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("json")) {
|
|
|
|
std::string filename = vm["json"].as<std::string>();
|
|
|
|
std::ifstream f(filename);
|
2018-07-13 15:14:48 +08:00
|
|
|
if (!parse_json_file(f, filename, ctx.get()))
|
2018-06-22 00:08:28 +08:00
|
|
|
log_error("Loading design failed.\n");
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("pcf")) {
|
|
|
|
std::ifstream pcf(vm["pcf"].as<std::string>());
|
2018-07-13 15:14:48 +08:00
|
|
|
if (!apply_pcf(ctx.get(), pcf))
|
2018-06-22 00:08:28 +08:00
|
|
|
log_error("Loading PCF failed.\n");
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-13 18:30:15 +08:00
|
|
|
|
2018-07-13 21:16:44 +08:00
|
|
|
if (!ctx->pack() && !ctx->force)
|
2018-06-21 23:44:18 +08:00
|
|
|
log_error("Packing design failed.\n");
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->check();
|
|
|
|
print_utilisation(ctx.get());
|
2018-06-21 23:44:18 +08:00
|
|
|
if (!vm.count("pack-only")) {
|
2018-07-13 15:14:48 +08:00
|
|
|
if (!ctx->place() && !ctx->force)
|
2018-06-21 23:44:18 +08:00
|
|
|
log_error("Placing design failed.\n");
|
2018-07-13 15:14:48 +08:00
|
|
|
ctx->check();
|
|
|
|
if (!ctx->route() && !ctx->force)
|
2018-06-21 23:44:18 +08:00
|
|
|
log_error("Routing design failed.\n");
|
|
|
|
}
|
2018-06-13 18:30:15 +08:00
|
|
|
}
|
|
|
|
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("asc")) {
|
|
|
|
std::string filename = vm["asc"].as<std::string>();
|
|
|
|
std::ofstream f(filename);
|
2018-07-13 15:14:48 +08:00
|
|
|
write_asc(ctx.get(), f);
|
2018-06-12 18:46:30 +08:00
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-23 20:32:18 +08:00
|
|
|
#ifndef NO_PYTHON
|
2018-06-21 23:44:18 +08:00
|
|
|
if (vm.count("run")) {
|
2018-06-27 17:45:19 +08:00
|
|
|
init_python(argv[0], true);
|
2018-07-13 15:14:48 +08:00
|
|
|
python_export_global("ctx", *ctx.get());
|
2018-06-27 17:45:19 +08:00
|
|
|
|
2018-06-23 21:28:09 +08:00
|
|
|
std::vector<std::string> files = vm["run"].as<std::vector<std::string>>();
|
2018-06-21 23:44:18 +08:00
|
|
|
for (auto filename : files)
|
|
|
|
execute_python_file(filename.c_str());
|
2018-06-27 18:18:52 +08:00
|
|
|
|
2018-06-27 17:45:19 +08:00
|
|
|
deinit_python();
|
2018-06-21 23:44:18 +08:00
|
|
|
}
|
2018-06-23 20:32:18 +08:00
|
|
|
#endif
|
2018-06-21 23:44:18 +08:00
|
|
|
return rc;
|
|
|
|
} catch (log_execution_error_exception) {
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
_exit(EXIT_FAILURE);
|
|
|
|
#else
|
|
|
|
_Exit(EXIT_FAILURE);
|
|
|
|
#endif
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
2018-05-26 20:27:21 +08:00
|
|
|
}
|
2018-06-08 17:17:04 +08:00
|
|
|
|
|
|
|
#endif
|