aboutsummaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2022-09-30 12:03:16 +0200
committergatecat <gatecat@ds0.me>2022-09-30 12:03:16 +0200
commit124c0fc8121f0ac1e7d9823f3f1576e5fa2c087b (patch)
tree7d992e459ba24aaed89d0d38fad73806a4d163fa /generic
parentc44b034fc33289a3c62f6169c042b0e039ec0c25 (diff)
downloadnextpnr-124c0fc8121f0ac1e7d9823f3f1576e5fa2c087b.tar.gz
nextpnr-124c0fc8121f0ac1e7d9823f3f1576e5fa2c087b.tar.bz2
nextpnr-124c0fc8121f0ac1e7d9823f3f1576e5fa2c087b.zip
fabulous: Add split MUX bels
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'generic')
-rw-r--r--generic/viaduct/fabulous/constids.inc10
-rw-r--r--generic/viaduct/fabulous/fabulous.cc41
2 files changed, 50 insertions, 1 deletions
diff --git a/generic/viaduct/fabulous/constids.inc b/generic/viaduct/fabulous/constids.inc
index c46d5e6d..13396358 100644
--- a/generic/viaduct/fabulous/constids.inc
+++ b/generic/viaduct/fabulous/constids.inc
@@ -14,6 +14,7 @@ X(OutPass4_frame_config)
X(RegFile_32x4)
X(MULADD)
X(MUX8LUT_frame_config)
+X(MUX8LUT_frame_config_mux)
X(CLK)
X(I)
@@ -86,3 +87,12 @@ X(BelBegin)
X(BelEnd)
X(GlobalClk)
X(CFG)
+
+X(FABULOUS_MUX2)
+X(FABULOUS_MUX4)
+X(FABULOUS_MUX8)
+
+X(M_AB)
+X(M_AD)
+X(M_EF)
+X(M_AH)
diff --git a/generic/viaduct/fabulous/fabulous.cc b/generic/viaduct/fabulous/fabulous.cc
index e2adb894..287d7e51 100644
--- a/generic/viaduct/fabulous/fabulous.cc
+++ b/generic/viaduct/fabulous/fabulous.cc
@@ -293,12 +293,48 @@ struct FabulousImpl : ViaductAPI
postprocess_bels();
}
+ void generate_split_mux8(BelId bel)
+ {
+ // _don't_ take a reference here because it might be invalidated by adding bels
+ auto data = ctx->bel_info(bel);
+ const std::array<IdString, 4> mux_outs{id_M_AB, id_M_AD, id_M_EF, id_M_AH};
+ for (unsigned k = 1; k <= 3; k++) {
+ // create MUX2 through 8
+ unsigned m = (1U << k);
+ for (unsigned i = 0; i < 8; i += m) {
+ // mux indexing scheme
+ // - MUX2s are at (z % 2) == 0
+ // - MUX4s are at (z % 4) == 1
+ // - MUX8s are at (z % 8) == 7
+ int idx = (m == 2) ? i : (m == 4) ? (i + 1) : (i + 7);
+ BelId mux =
+ ctx->addBel(IdStringList::concat(data.name[0], ctx->idf("MUX%d_%d", m, i)),
+ ctx->idf("FABULOUS_MUX%d", m), Loc(data.x, data.y, data.z + 1 + idx), false, false);
+ blk_trk->set_bel_type(mux, BelFlags::BLOCK_CLB, BelFlags::FUNC_MUX, idx);
+ // M data inputs
+ for (unsigned j = 0; j < m; j++) {
+ ctx->addBelInput(mux, ctx->idf("I%d", j), data.pins.at(ctx->idf("%c", char('A' + i + j))).wire);
+ }
+ // K select inputs
+ for (unsigned j = 0; j < k; j++) {
+ ctx->addBelInput(mux, ctx->idf("S%d", j), data.pins.at(ctx->idf("S%d",
+ (m == 8 && j == 2) ? 3 : ((i / m) * k + j)
+ )).wire);
+ }
+ // Output
+ IdString output = (m == 2) ? mux_outs.at(i / m) : (m == 4) ? mux_outs.at((i / m) * k + 1) : mux_outs.at(3);
+ ctx->addBelOutput(mux, id_O, data.pins.at(output).wire);
+ }
+ }
+ }
+
void postprocess_bels()
{
// This does some post-processing on bels to make them useful for nextpnr place-and-route regardless of the code
// path that creates them. In the future, splitting muxes and creating split LCs would be done here, too
for (auto bel : ctx->getBels()) {
- auto &data = ctx->bel_info(bel);
+ // _don't_ take a reference here because it might be invalidated by adding bels
+ auto data = ctx->bel_info(bel);
if (data.type == id_FABULOUS_LC) {
if (!data.pins.count(id_Q)) {
// Add a Q pseudo-pin and pseudo-pip from Q to O
@@ -309,6 +345,9 @@ struct FabulousImpl : ViaductAPI
// Pseudo-pip for FF mode
add_pseudo_pip(q_wire, o_wire, id_O2Q);
}
+ } else if (data.type.in(id_MUX8LUT_frame_config, id_MUX8LUT_frame_config_mux)) {
+ generate_split_mux8(bel);
+ ctx->bel_info(bel).hidden = true;
} else if (data.type == id_IO_1_bidirectional_frame_config_pass) {
if (!data.pins.count(id_PAD)) {
// Add a PAD pseudo-pin for the top level