2020-12-30 22:59:55 +08:00
|
|
|
/*
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
*
|
2021-06-09 20:09:08 +08:00
|
|
|
* Copyright (C) 2018 Claire Xenia Wolf <claire@yosyshq.com>
|
2020-12-30 22:59:55 +08:00
|
|
|
* Copyright (C) 2020 Pepijn de Vos <pepijn@symbioticeda.com>
|
|
|
|
*
|
|
|
|
* 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 <fstream>
|
2022-03-14 19:41:57 +08:00
|
|
|
#include <locale>
|
2020-12-30 22:59:55 +08:00
|
|
|
#include <regex>
|
|
|
|
#include "command.h"
|
|
|
|
#include "design_utils.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "timing.h"
|
|
|
|
|
|
|
|
USING_NEXTPNR_NAMESPACE
|
|
|
|
|
|
|
|
class GowinCommandHandler : public CommandHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GowinCommandHandler(int argc, char **argv);
|
2024-09-30 20:51:33 +08:00
|
|
|
virtual ~GowinCommandHandler() {};
|
2021-06-02 18:36:56 +08:00
|
|
|
std::unique_ptr<Context> createContext(dict<std::string, Property> &values) override;
|
2024-09-30 20:51:33 +08:00
|
|
|
void setupArchContext(Context *ctx) override {};
|
2020-12-30 22:59:55 +08:00
|
|
|
void customAfterLoad(Context *ctx) override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
po::options_description getArchOptions() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
GowinCommandHandler::GowinCommandHandler(int argc, char **argv) : CommandHandler(argc, argv) {}
|
|
|
|
|
|
|
|
po::options_description GowinCommandHandler::getArchOptions()
|
|
|
|
{
|
|
|
|
po::options_description specific("Architecture specific options");
|
|
|
|
specific.add_options()("device", po::value<std::string>(), "device name");
|
2022-01-24 23:54:09 +08:00
|
|
|
specific.add_options()("family", po::value<std::string>(), "family name");
|
2020-12-30 22:59:55 +08:00
|
|
|
specific.add_options()("cst", po::value<std::string>(), "physical constraints file");
|
2022-12-30 09:55:39 +08:00
|
|
|
specific.add_options()("enable-globals", "enable separate routing of the clocks");
|
|
|
|
specific.add_options()("disable-globals", "disable separate routing of the clocks");
|
2022-06-23 09:42:58 +08:00
|
|
|
specific.add_options()("enable-auto-longwires", "automatic detection and routing of long wires");
|
2020-12-30 22:59:55 +08:00
|
|
|
return specific;
|
|
|
|
}
|
|
|
|
|
2021-06-02 18:36:56 +08:00
|
|
|
std::unique_ptr<Context> GowinCommandHandler::createContext(dict<std::string, Property> &values)
|
2020-12-30 22:59:55 +08:00
|
|
|
{
|
2022-03-16 13:47:13 +08:00
|
|
|
if (!vm.count("device")) {
|
|
|
|
log_error("The device must be specified\n");
|
|
|
|
}
|
|
|
|
|
2022-02-24 11:35:22 +08:00
|
|
|
std::regex devicere = std::regex("GW1N([SZ]?)[A-Z]*-(LV|UV|UX)([0-9])(C?).*");
|
2020-12-30 22:59:55 +08:00
|
|
|
std::smatch match;
|
|
|
|
std::string device = vm["device"].as<std::string>();
|
2023-06-17 18:31:04 +08:00
|
|
|
bool GW2 = device == "GW2A-LV18PG256C8/I7";
|
|
|
|
|
|
|
|
if (!GW2 && !std::regex_match(device, match, devicere)) {
|
2020-12-30 22:59:55 +08:00
|
|
|
log_error("Invalid device %s\n", device.c_str());
|
|
|
|
}
|
|
|
|
ArchArgs chipArgs;
|
2022-01-29 12:45:17 +08:00
|
|
|
chipArgs.gui = vm.count("gui") != 0;
|
2022-01-24 23:54:09 +08:00
|
|
|
if (vm.count("family")) {
|
2022-02-16 21:32:53 +08:00
|
|
|
chipArgs.family = vm["family"].as<std::string>();
|
2022-01-24 23:54:09 +08:00
|
|
|
} else {
|
2023-06-17 18:31:04 +08:00
|
|
|
if (!GW2) {
|
|
|
|
char buf[36];
|
|
|
|
// GW1N and GW1NR variants share the same database.
|
|
|
|
// Most Gowin devices are a System in Package with some SDRAM wirebonded to a GPIO bank.
|
|
|
|
// However, it appears that the S series with embedded ARM core are unique silicon.
|
|
|
|
snprintf(buf, 36, "GW1N%s-%s", match[1].str().c_str(), match[3].str().c_str());
|
|
|
|
chipArgs.family = buf;
|
|
|
|
} else {
|
|
|
|
chipArgs.family = "GW2A-18";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!GW2) {
|
|
|
|
chipArgs.partnumber = match[0];
|
|
|
|
} else {
|
|
|
|
chipArgs.partnumber = device;
|
2022-01-24 23:54:09 +08:00
|
|
|
}
|
2022-06-23 09:42:58 +08:00
|
|
|
|
|
|
|
auto ctx = std::unique_ptr<Context>(new Context(chipArgs));
|
|
|
|
// routing options
|
2022-12-30 09:55:39 +08:00
|
|
|
ctx->settings[ctx->id("arch.enable-globals")] = 1;
|
2022-06-23 09:42:58 +08:00
|
|
|
ctx->settings[ctx->id("arch.enable-auto-longwires")] = 0;
|
2022-12-30 09:55:39 +08:00
|
|
|
if (vm.count("disable-globals")) {
|
|
|
|
ctx->settings[ctx->id("arch.enable-globals")] = 0;
|
2022-06-23 09:42:58 +08:00
|
|
|
}
|
|
|
|
if (vm.count("enable-auto-longwires")) {
|
|
|
|
ctx->settings[ctx->id("arch.enable-auto-longwires")] = 1;
|
|
|
|
}
|
2023-06-17 18:31:04 +08:00
|
|
|
// XXX disable clock lines for now
|
|
|
|
if (GW2) {
|
|
|
|
ctx->settings[ctx->id("arch.enable-globals")] = 0;
|
|
|
|
}
|
2022-06-23 09:42:58 +08:00
|
|
|
return ctx;
|
2020-12-30 22:59:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void GowinCommandHandler::customAfterLoad(Context *ctx)
|
|
|
|
{
|
|
|
|
if (vm.count("cst")) {
|
|
|
|
std::string filename = vm["cst"].as<std::string>();
|
|
|
|
std::ifstream in(filename);
|
|
|
|
if (!in)
|
|
|
|
log_error("Failed to open input CST file %s.\n", filename.c_str());
|
|
|
|
ctx->read_cst(in);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
GowinCommandHandler handler(argc, argv);
|
|
|
|
return handler.exec();
|
|
|
|
}
|