2018-05-26 20:27:21 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 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.
|
|
|
|
*
|
|
|
|
*/
|
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-06 03:03:06 +08:00
|
|
|
#include <QApplication>
|
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-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-07 19:10:53 +08:00
|
|
|
#include "mainwindow.h"
|
2018-06-12 02:12:57 +08:00
|
|
|
#include "nextpnr.h"
|
2018-06-12 18:46:30 +08:00
|
|
|
#include "pack.h"
|
2018-06-13 18:30:15 +08:00
|
|
|
#include "pcf.h"
|
2018-06-17 16:35:37 +08:00
|
|
|
#include "place_sa.h"
|
2018-06-07 19:10:53 +08:00
|
|
|
#include "pybindings.h"
|
2018-06-10 00:19:20 +08:00
|
|
|
#include "route.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-06 23:08:31 +08:00
|
|
|
void svg_dump_el(const GraphicElement &el)
|
|
|
|
{
|
2018-06-07 19:10:53 +08:00
|
|
|
float scale = 10.0, offset = 10.0;
|
|
|
|
std::string style = "stroke=\"black\" stroke-width=\"0.1\" fill=\"none\"";
|
|
|
|
|
|
|
|
if (el.type == GraphicElement::G_BOX) {
|
|
|
|
std::cout << "<rect x=\"" << (offset + scale * el.x1) << "\" y=\""
|
|
|
|
<< (offset + scale * el.y1) << "\" height=\""
|
|
|
|
<< (scale * (el.y2 - el.y1)) << "\" width=\""
|
|
|
|
<< (scale * (el.x2 - el.x1)) << "\" " << style << "/>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (el.type == GraphicElement::G_LINE) {
|
|
|
|
std::cout << "<line x1=\"" << (offset + scale * el.x1) << "\" y1=\""
|
|
|
|
<< (offset + scale * el.y1) << "\" x2=\""
|
|
|
|
<< (offset + scale * el.x2) << "\" y2=\""
|
|
|
|
<< (offset + scale * el.y2) << "\" " << style << "/>\n";
|
|
|
|
}
|
2018-06-06 23:08:31 +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
|
|
|
namespace po = boost::program_options;
|
|
|
|
int rc = 0;
|
|
|
|
std::string str;
|
|
|
|
|
2018-06-07 19:52:05 +08:00
|
|
|
log_files.push_back(stdout);
|
2018-06-07 20:12:22 +08:00
|
|
|
|
2018-06-07 19:10:53 +08:00
|
|
|
po::options_description options("Allowed options");
|
|
|
|
options.add_options()("help,h", "show help");
|
2018-06-13 22:52:21 +08:00
|
|
|
options.add_options()("verbose,v", "verbose output");
|
2018-06-19 19:38:53 +08:00
|
|
|
options.add_options()("force,f", "keep running after errors");
|
2018-06-07 19:10:53 +08:00
|
|
|
options.add_options()("gui", "start gui");
|
|
|
|
options.add_options()("svg", "dump SVG file");
|
2018-06-12 18:46:30 +08:00
|
|
|
options.add_options()("pack-only",
|
|
|
|
"pack design only without placement or routing");
|
|
|
|
|
2018-06-07 19:10:53 +08:00
|
|
|
options.add_options()("run", po::value<std::vector<std::string>>(),
|
|
|
|
"python file to execute");
|
|
|
|
options.add_options()("json", po::value<std::string>(),
|
|
|
|
"JSON design file to ingest");
|
2018-06-13 18:30:15 +08:00
|
|
|
options.add_options()("pcf", po::value<std::string>(),
|
|
|
|
"PCF constraints file to ingest");
|
2018-06-10 17:56:07 +08:00
|
|
|
options.add_options()("asc", po::value<std::string>(),
|
|
|
|
"asc bitstream file to write");
|
2018-06-17 21:04:53 +08:00
|
|
|
options.add_options()("seed", po::value<int>(),
|
|
|
|
"seed value for random number generator");
|
2018-06-14 21:09:13 +08:00
|
|
|
options.add_options()("version,V", "show version");
|
2018-06-20 20:04:10 +08:00
|
|
|
options.add_options()("tmfuzz", "run path delay estimate fuzzer");
|
2018-06-07 19:10:53 +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-06-13 17:51:09 +08:00
|
|
|
options.add_options()("package", po::value<std::string>(),
|
|
|
|
"set device package");
|
2018-06-07 19:10:53 +08:00
|
|
|
po::positional_options_description pos;
|
|
|
|
pos.add("run", -1);
|
|
|
|
|
|
|
|
po::variables_map vm;
|
|
|
|
try {
|
|
|
|
po::parsed_options parsed = po::command_line_parser(argc, argv)
|
|
|
|
.options(options)
|
|
|
|
.positional(pos)
|
|
|
|
.run();
|
|
|
|
|
|
|
|
po::store(parsed, vm);
|
|
|
|
|
|
|
|
po::notify(vm);
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (std::exception &e) {
|
|
|
|
std::cout << e.what() << "\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("help") || argc == 1) {
|
|
|
|
help:
|
2018-06-11 15:33:42 +08:00
|
|
|
std::cout << boost::filesystem::basename(argv[0])
|
2018-06-07 19:10:53 +08:00
|
|
|
<< " -- Next Generation Place and Route (git "
|
|
|
|
"sha1 " GIT_COMMIT_HASH_STR ")\n";
|
|
|
|
std::cout << "\n";
|
|
|
|
std::cout << options << "\n";
|
|
|
|
return argc != 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("version")) {
|
2018-06-11 15:33:42 +08:00
|
|
|
std::cout << boost::filesystem::basename(argv[0])
|
2018-06-07 19:10:53 +08:00
|
|
|
<< " -- Next Generation Place and Route (git "
|
|
|
|
"sha1 " GIT_COMMIT_HASH_STR ")\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-06-18 19:35:25 +08:00
|
|
|
ArchArgs chipArgs;
|
2018-06-07 19:10:53 +08:00
|
|
|
|
|
|
|
if (vm.count("lp384")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::LP384;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "qn32";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("lp1k")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::LP1K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "tq144";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("lp8k")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::LP8K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "ct256";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("hx1k")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::HX1K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "tq144";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("hx8k")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::HX8K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "ct256";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("up5k")) {
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::NONE)
|
2018-06-07 19:10:53 +08:00
|
|
|
goto help;
|
2018-06-18 19:35:25 +08:00
|
|
|
chipArgs.type = ArchArgs::UP5K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "sg48";
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type == ArchArgs::NONE) {
|
|
|
|
chipArgs.type = ArchArgs::HX1K;
|
2018-06-13 17:51:09 +08:00
|
|
|
chipArgs.package = "tq144";
|
|
|
|
}
|
2018-06-07 18:26:02 +08:00
|
|
|
#ifdef ICE40_HX1K_ONLY
|
2018-06-18 19:35:25 +08:00
|
|
|
if (chipArgs.type != ArchArgs::HX1K) {
|
2018-06-07 19:10:53 +08:00
|
|
|
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-13 17:51:09 +08:00
|
|
|
if (vm.count("package"))
|
|
|
|
chipArgs.package = vm["package"].as<std::string>();
|
|
|
|
|
2018-06-18 20:06:37 +08:00
|
|
|
Context ctx(chipArgs);
|
2018-06-07 19:10:53 +08:00
|
|
|
init_python(argv[0]);
|
2018-06-18 20:06:37 +08:00
|
|
|
python_export_global("ctx", ctx);
|
2018-06-07 19:10:53 +08:00
|
|
|
|
2018-06-19 18:49:40 +08:00
|
|
|
if (vm.count("verbose")) {
|
|
|
|
ctx.verbose = true;
|
|
|
|
}
|
|
|
|
|
2018-06-19 19:38:53 +08:00
|
|
|
if (vm.count("force")) {
|
|
|
|
ctx.force = true;
|
|
|
|
}
|
|
|
|
|
2018-06-19 18:49:40 +08:00
|
|
|
if (vm.count("seed")) {
|
|
|
|
ctx.rngseed(vm["seed"].as<int>());
|
|
|
|
}
|
|
|
|
|
2018-06-07 19:10:53 +08:00
|
|
|
if (vm.count("svg")) {
|
|
|
|
std::cout << "<svg xmlns=\"http://www.w3.org/2000/svg\" "
|
|
|
|
"xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n";
|
2018-06-18 20:06:37 +08:00
|
|
|
for (auto bel : ctx.getBels()) {
|
2018-06-18 23:08:35 +08:00
|
|
|
std::cout << "<!-- " << ctx.getBelName(bel).str(&ctx) << " -->\n";
|
2018-06-18 20:06:37 +08:00
|
|
|
for (auto &el : ctx.getBelGraphics(bel))
|
2018-06-07 19:10:53 +08:00
|
|
|
svg_dump_el(el);
|
|
|
|
}
|
|
|
|
std::cout << "<!-- Frame -->\n";
|
2018-06-18 20:06:37 +08:00
|
|
|
for (auto &el : ctx.getFrameGraphics())
|
2018-06-07 19:10:53 +08:00
|
|
|
svg_dump_el(el);
|
|
|
|
std::cout << "</svg>\n";
|
|
|
|
}
|
|
|
|
|
2018-06-20 20:04:10 +08:00
|
|
|
if (vm.count("tmfuzz")) {
|
|
|
|
std::vector<WireId> src_wires, dst_wires;
|
|
|
|
|
|
|
|
for (auto w : ctx.getWires())
|
|
|
|
src_wires.push_back(w);
|
|
|
|
|
|
|
|
for (auto b : ctx.getBels()) {
|
|
|
|
if (ctx.getBelType(b) == TYPE_ICESTORM_LC) {
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_I0));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_I1));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_I2));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_I3));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_CEN));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_CIN));
|
|
|
|
}
|
|
|
|
if (ctx.getBelType(b) == TYPE_SB_IO) {
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_D_OUT_0));
|
|
|
|
dst_wires.push_back(ctx.getWireBelPin(b, PIN_OUTPUT_ENABLE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.shuffle(src_wires);
|
|
|
|
ctx.shuffle(dst_wires);
|
|
|
|
|
|
|
|
for (int i = 0; i < int(src_wires.size()) && i < int(dst_wires.size());
|
|
|
|
i++) {
|
|
|
|
delay_t actual_delay;
|
|
|
|
if (!get_actual_route_delay(&ctx, src_wires[i], dst_wires[i],
|
|
|
|
actual_delay))
|
|
|
|
continue;
|
|
|
|
printf("%s %s %.3f %.3f\n",
|
|
|
|
ctx.getWireName(src_wires[i]).c_str(&ctx),
|
|
|
|
ctx.getWireName(dst_wires[i]).c_str(&ctx),
|
|
|
|
ctx.getDelayNS(actual_delay),
|
|
|
|
ctx.getDelayNS(
|
|
|
|
ctx.estimateDelay(src_wires[i], dst_wires[i])));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-07 19:10:53 +08:00
|
|
|
if (vm.count("json")) {
|
|
|
|
std::string filename = vm["json"].as<std::string>();
|
|
|
|
std::istream *f = new std::ifstream(filename);
|
|
|
|
|
2018-06-18 20:06:37 +08:00
|
|
|
parse_json_file(f, filename, &ctx);
|
2018-06-13 18:30:15 +08:00
|
|
|
|
|
|
|
if (vm.count("pcf")) {
|
|
|
|
std::ifstream pcf(vm["pcf"].as<std::string>());
|
2018-06-18 20:06:37 +08:00
|
|
|
apply_pcf(&ctx, pcf);
|
2018-06-13 18:30:15 +08:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:38:53 +08:00
|
|
|
if (!pack_design(&ctx) && !ctx.force)
|
|
|
|
log_error("Packing design failed.\n");
|
2018-06-20 21:15:51 +08:00
|
|
|
assign_budget(&ctx, 50e6);
|
2018-06-18 20:06:37 +08:00
|
|
|
print_utilisation(&ctx);
|
2018-06-17 21:04:53 +08:00
|
|
|
|
2018-06-12 18:46:30 +08:00
|
|
|
if (!vm.count("pack-only")) {
|
2018-06-19 19:38:53 +08:00
|
|
|
if (!place_design_sa(&ctx) && !ctx.force)
|
|
|
|
log_error("Placing design failed.\n");
|
|
|
|
if (!route_design(&ctx) && !ctx.force)
|
|
|
|
log_error("Routing design failed.\n");
|
2018-06-12 18:46:30 +08:00
|
|
|
}
|
2018-06-07 19:10:53 +08:00
|
|
|
}
|
|
|
|
|
2018-06-10 17:56:07 +08:00
|
|
|
if (vm.count("asc")) {
|
|
|
|
std::string filename = vm["asc"].as<std::string>();
|
|
|
|
std::ofstream f(filename);
|
2018-06-18 20:06:37 +08:00
|
|
|
write_asc(&ctx, f);
|
2018-06-10 17:56:07 +08:00
|
|
|
}
|
|
|
|
|
2018-06-07 19:10:53 +08:00
|
|
|
if (vm.count("run")) {
|
|
|
|
std::vector<std::string> files =
|
|
|
|
vm["run"].as<std::vector<std::string>>();
|
|
|
|
for (auto filename : files)
|
|
|
|
execute_python_file(filename.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vm.count("gui")) {
|
|
|
|
QApplication a(argc, argv);
|
2018-06-18 20:06:37 +08:00
|
|
|
MainWindow w(&ctx);
|
2018-06-07 19:10:53 +08:00
|
|
|
w.show();
|
|
|
|
|
|
|
|
rc = a.exec();
|
|
|
|
}
|
|
|
|
deinit_python();
|
|
|
|
return rc;
|
2018-05-26 20:27:21 +08:00
|
|
|
}
|
2018-06-08 17:17:04 +08:00
|
|
|
|
|
|
|
#endif
|