aboutsummaryrefslogtreecommitdiffstats
path: root/frontend
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-11 13:33:55 -0800
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-11 13:33:55 -0800
commit73710416b4764a13357b4e8602df8dc89684fbd8 (patch)
treec6c23d153c9cdcb3328e440b6d879278d4b30804 /frontend
parente376f950fe683b9a744437301a9e09eae1895efa (diff)
downloadnextpnr-73710416b4764a13357b4e8602df8dc89684fbd8.tar.gz
nextpnr-73710416b4764a13357b4e8602df8dc89684fbd8.tar.bz2
nextpnr-73710416b4764a13357b4e8602df8dc89684fbd8.zip
Add control to whether GenericFrontend splits IO ports.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'frontend')
-rw-r--r--frontend/frontend_base.h42
-rw-r--r--frontend/json_frontend.cc2
2 files changed, 26 insertions, 18 deletions
diff --git a/frontend/frontend_base.h b/frontend/frontend_base.h
index e262c943..e43e3d00 100644
--- a/frontend/frontend_base.h
+++ b/frontend/frontend_base.h
@@ -123,7 +123,7 @@ struct ModuleInfo
template <typename FrontendType> struct GenericFrontend
{
- GenericFrontend(Context *ctx, const FrontendType &impl) : ctx(ctx), impl(impl) {}
+ GenericFrontend(Context *ctx, const FrontendType &impl, bool split_io) : ctx(ctx), impl(impl), split_io(split_io) {}
void operator()()
{
// Find which module is top
@@ -139,6 +139,7 @@ template <typename FrontendType> struct GenericFrontend
Context *ctx;
const FrontendType &impl;
+ const bool split_io;
using mod_dat_t = typename FrontendType::ModuleDataType;
using mod_port_dat_t = typename FrontendType::ModulePortDataType;
using cell_dat_t = typename FrontendType::CellDataType;
@@ -146,7 +147,7 @@ template <typename FrontendType> struct GenericFrontend
using bitvector_t = typename FrontendType::BitVectorDataType;
std::unordered_map<IdString, ModuleInfo> mods;
- std::unordered_map<IdString, const mod_dat_t &> mod_refs;
+ std::unordered_map<IdString, const mod_dat_t> mod_refs;
IdString top;
// Process the list of modules and determine
@@ -583,22 +584,28 @@ template <typename FrontendType> struct GenericFrontend
connect_port(ctx, net, iobuf, ctx->id("I"));
} else if (dir == PORT_INOUT) {
iobuf->type = ctx->id("$nextpnr_iobuf");
- iobuf->addInput(ctx->id("I"));
- iobuf->addOutput(ctx->id("O"));
- // Need to bifurcate the net to avoid multiple drivers and split
- // the input/output parts of an inout
- // Create a new net connecting only the current net's driver and the IOBUF input
- // Then use the IOBUF output to drive all of the current net's users
- NetInfo *split_iobuf_i = ctx->createNet(unique_name("", "$" + name + "$iobuf_i", true));
- auto drv = net->driver;
- if (drv.cell != nullptr) {
- disconnect_port(ctx, drv.cell, drv.port);
- drv.cell->ports[drv.port].net = nullptr;
- connect_port(ctx, split_iobuf_i, drv.cell, drv.port);
+
+ if (split_io) {
+ iobuf->addInput(ctx->id("I"));
+ iobuf->addOutput(ctx->id("O"));
+ // Need to bifurcate the net to avoid multiple drivers and split
+ // the input/output parts of an inout
+ // Create a new net connecting only the current net's driver and the IOBUF input
+ // Then use the IOBUF output to drive all of the current net's users
+ NetInfo *split_iobuf_i = ctx->createNet(unique_name("", "$" + name + "$iobuf_i", true));
+ auto drv = net->driver;
+ if (drv.cell != nullptr) {
+ disconnect_port(ctx, drv.cell, drv.port);
+ drv.cell->ports[drv.port].net = nullptr;
+ connect_port(ctx, split_iobuf_i, drv.cell, drv.port);
+ }
+ connect_port(ctx, split_iobuf_i, iobuf, ctx->id("I"));
+ NPNR_ASSERT(net->driver.cell == nullptr);
+ connect_port(ctx, net, iobuf, ctx->id("O"));
+ } else {
+ iobuf->addInout(ctx->id("IO"));
+ connect_port(ctx, net, iobuf, ctx->id("IO"));
}
- connect_port(ctx, split_iobuf_i, iobuf, ctx->id("I"));
- NPNR_ASSERT(net->driver.cell == nullptr);
- connect_port(ctx, net, iobuf, ctx->id("O"));
}
PortInfo pinfo;
@@ -606,6 +613,7 @@ template <typename FrontendType> struct GenericFrontend
pinfo.net = net;
pinfo.type = dir;
ctx->ports[pinfo.name] = pinfo;
+ ctx->port_cells[pinfo.name] = iobuf;
return iobuf;
}
diff --git a/frontend/json_frontend.cc b/frontend/json_frontend.cc
index 136786fc..52f7bfdc 100644
--- a/frontend/json_frontend.cc
+++ b/frontend/json_frontend.cc
@@ -197,7 +197,7 @@ bool parse_json(std::istream &in, const std::string &filename, Context *ctx)
log_error("JSON file '%s' doesn't look like a netlist (doesn't contain \"modules\" key)\n",
filename.c_str());
}
- GenericFrontend<JsonFrontendImpl>(ctx, JsonFrontendImpl(root))();
+ GenericFrontend<JsonFrontendImpl>(ctx, JsonFrontendImpl(root), /*split_io=*/true)();
return true;
}