diff options
author | uis <uis9936@gmail.com> | 2021-12-18 22:44:08 +0300 |
---|---|---|
committer | uis <uis9936@gmail.com> | 2021-12-18 22:44:08 +0300 |
commit | 9b2d6c5a67f0774bc41f0bc6cdb6a71bbcc388e8 (patch) | |
tree | 8641f765e151fe4f726d5cc1672fbedf2d74c2a3 | |
parent | f80f56d69ff171d9d1079258a92963cee7d796b5 (diff) | |
download | nextpnr-9b2d6c5a67f0774bc41f0bc6cdb6a71bbcc388e8.tar.gz nextpnr-9b2d6c5a67f0774bc41f0bc6cdb6a71bbcc388e8.tar.bz2 nextpnr-9b2d6c5a67f0774bc41f0bc6cdb6a71bbcc388e8.zip |
Clean gowin modification regex
-rw-r--r-- | gowin/main.cc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gowin/main.cc b/gowin/main.cc index cbd62ed9..66de26aa 100644 --- a/gowin/main.cc +++ b/gowin/main.cc @@ -54,7 +54,7 @@ po::options_description GowinCommandHandler::getArchOptions() std::unique_ptr<Context> GowinCommandHandler::createContext(dict<std::string, Property> &values) { - std::regex devicere = std::regex("GW1N([A-Z]*)-(LV|UV|UX)([0-9])(C?).*"); + std::regex devicere = std::regex("GW1N(S?)[A-Z]*-(LV|UV|UX)([0-9])(C?).*"); std::smatch match; std::string device = vm["device"].as<std::string>(); if (!std::regex_match(device, match, devicere)) { @@ -65,11 +65,7 @@ std::unique_ptr<Context> GowinCommandHandler::createContext(dict<std::string, Pr // 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. - if (match[1].str().length() && match[1].str()[0] == 'S') { - snprintf(buf, 36, "GW1NS-%s", match[3].str().c_str()); - } else { - snprintf(buf, 36, "GW1N-%s", match[3].str().c_str()); - } + snprintf(buf, 36, "GW1N%s-%s", match[1].str().c_str(), match[3].str().c_str()); chipArgs.family = buf; chipArgs.partnumber = match[0]; return std::unique_ptr<Context>(new Context(chipArgs)); |