From d4c688297c1f4d0e70412e6aacdfd58d6b065749 Mon Sep 17 00:00:00 2001 From: Adam Greig Date: Wed, 31 Mar 2021 02:20:09 +0100 Subject: Add relative constraints to position MULT18X18D near connected ALU54B. --- ecp5/arch.cc | 5 +++++ ecp5/pack.cc | 24 ++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/ecp5/arch.cc b/ecp5/arch.cc index 8b5962d2..ae9d1af0 100644 --- a/ecp5/arch.cc +++ b/ecp5/arch.cc @@ -574,6 +574,11 @@ bool Arch::place() PlacerHeapCfg cfg(getCtx()); cfg.criticalityExponent = 4; cfg.ioBufTypes.insert(id_TRELLIS_IO); + + cfg.cellGroups.emplace_back(); + cfg.cellGroups.back().insert(id_MULT18X18D); + cfg.cellGroups.back().insert(id_ALU54B); + if (!placer_heap(getCtx(), cfg)) return false; } else if (placer == "sa") { diff --git a/ecp5/pack.cc b/ecp5/pack.cc index aa7fdd22..ac16536d 100644 --- a/ecp5/pack.cc +++ b/ecp5/pack.cc @@ -1573,6 +1573,30 @@ class Ecp5Packer autocreate_empty_port(ci, ctx->id(port + std::to_string(i))); for (int i = 0; i < 11; i++) autocreate_empty_port(ci, ctx->id("OP" + std::to_string(i))); + + // Find the MULT18X18Ds feeding this ALU54B's inputs and + // constrain them to the ALU. + for (auto port : {id_MA0, id_MB0}) { + CellInfo *mult = net_driven_by( + ctx, ci->ports.at(port).net, + [](const Context *ctx, const CellInfo *cell) { + return cell->type == id_MULT18X18D; + }, id_P0 + ); + if(mult != nullptr) { + if(port == id_MA0) { + mult->constr_x = mult->constr_z = -3; + } else if(port == id_MB0) { + mult->constr_x = mult->constr_z = -2; + } + mult->constr_y = 0; + mult->constr_parent = ci; + ci->constr_children.push_back(mult); + log_info("DSP: Constraining MULT18X18D '%s' to ALU54B '%s' port %s\n", + mult->name.c_str(ctx), cell.first.c_str(ctx), + ctx->nameOf(port)); + } + } } } } -- cgit v1.2.3