aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/cells.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-19 14:03:48 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-19 14:03:48 +0200
commitbff7d673eda60f1ff8a59fd49a9e57a9ba8fa393 (patch)
treed516134294ad5b12312d26fe13c53494d9b4646f /ice40/cells.cc
parent6c38df7295747ddd37a751ea5de2a73e95a021d1 (diff)
downloadnextpnr-bff7d673eda60f1ff8a59fd49a9e57a9ba8fa393.tar.gz
nextpnr-bff7d673eda60f1ff8a59fd49a9e57a9ba8fa393.tar.bz2
nextpnr-bff7d673eda60f1ff8a59fd49a9e57a9ba8fa393.zip
ice40: Packer and bitstream gen support for MAC16s
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40/cells.cc')
-rw-r--r--ice40/cells.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/ice40/cells.cc b/ice40/cells.cc
index f07e0d22..71a65d44 100644
--- a/ice40/cells.cc
+++ b/ice40/cells.cc
@@ -350,8 +350,9 @@ bool is_enable_port(const BaseCtx *ctx, const PortRef &port)
return port.port == ctx->id("E");
if (port.cell->type == ctx->id("ICESTORM_LC"))
return port.port == ctx->id("CEN");
- if (is_sb_mac16(ctx, port.cell) || port.cell->type == ctx->id("ICESTORM_DSP"))
- return port.port == ctx->id("CE");
+ // FIXME
+ // if (is_sb_mac16(ctx, port.cell) || port.cell->type == ctx->id("ICESTORM_DSP"))
+ // return port.port == ctx->id("CE");
return false;
}