aboutsummaryrefslogtreecommitdiffstats
path: root/cyclonev/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cyclonev/arch.cc')
-rw-r--r--cyclonev/arch.cc123
1 files changed, 86 insertions, 37 deletions
diff --git a/cyclonev/arch.cc b/cyclonev/arch.cc
index 642806e3..eff6660e 100644
--- a/cyclonev/arch.cc
+++ b/cyclonev/arch.cc
@@ -18,6 +18,7 @@
#include <algorithm>
+#include "log.h"
#include "nextpnr.h"
#include "cyclonev.h"
@@ -41,6 +42,19 @@ Arch::Arch(ArchArgs args)
this->cyclonev = mistral::CycloneV::get_model(args.device, args.mistral_root);
NPNR_ASSERT(this->cyclonev != nullptr);
+ // Setup fast identifier maps
+ for (int i = 0; i < 1024; i++) {
+ IdString int_id = id(stringf("%d", i));
+ int2id.push_back(int_id);
+ id2int[int_id] = i;
+ }
+
+ for (int t = int(CycloneV::NONE); t <= int(CycloneV::DCMUX); t++) {
+ IdString rnode_id = id(CycloneV::rnode_type_names[t]);
+ rn_t2id.push_back(rnode_id);
+ id2rn_t[rnode_id] = CycloneV::rnode_type_t(t);
+ }
+
for (int x = 0; x < cyclonev->get_tile_sx(); x++) {
for (int y = 0; y < cyclonev->get_tile_sy(); y++) {
CycloneV::pos_t pos = cyclonev->xy2pos(x, y);
@@ -56,13 +70,13 @@ Arch::Arch(ArchArgs args)
* One ALM contains 2 LUT outputs and 4 flop outputs.
*/
for (int z = 0; z < 60; z++) {
- this->bel_list.push_back(BelId(pos, z));
+ bels[BelId(pos, (bel << 8 | z))];
}
break;
case CycloneV::block_type_t::GPIO:
// GPIO tiles contain 4 pins.
for (int z = 0; z < 4; z++) {
- this->bel_list.push_back(BelId(pos, z));
+ bels[BelId(pos, (bel << 8 | z))];
}
break;
default:
@@ -71,44 +85,25 @@ Arch::Arch(ArchArgs args)
}
}
}
+
+ BaseArch::init_cell_types();
+ BaseArch::init_bel_buckets();
}
int Arch::getTileBelDimZ(int x, int y) const
{
- CycloneV::pos_t pos = cyclonev->xy2pos(x, y);
-
- for (CycloneV::block_type_t bel : cyclonev->pos_get_bels(pos)) {
- switch (bel) {
- case CycloneV::block_type_t::LAB:
- /*
- * nextpnr and mistral disagree on what a BEL is: mistral thinks an entire LAB
- * is one BEL, but nextpnr wants something with more precision.
- *
- * One LAB contains 10 ALMs.
- * One ALM contains 2 LUT outputs and 4 flop outputs.
- */
- return 60;
- case CycloneV::block_type_t::GPIO:
- // GPIO tiles contain 4 pins.
- return 4;
- default:
- continue;
- }
- }
-
- // As a temporary hack, only LABs and IO are allowed to be placed, so every other tile type has zero BELs.
- return 0;
+ // FIXME: currently encoding type in z (this will be fixed soon when site contents are implemented)
+ return 16384;
}
BelId Arch::getBelByName(IdStringList name) const
{
- char bel_type_str[80] = {0};
- int x = 0, y = 0, z = 0;
BelId bel;
-
- sscanf(name[0].c_str(this), "%25s.%d.%d.%d", bel_type_str, &x, &y, &z);
-
- auto bel_type = cyclonev->block_type_lookup(std::string{bel_type_str});
+ NPNR_ASSERT(name.size() == 4);
+ auto bel_type = cyclonev->block_type_lookup(name[0].str(this));
+ int x = id2int.at(name[1]);
+ int y = id2int.at(name[2]);
+ int z = id2int.at(name[3]);
bel.pos = CycloneV::xy2pos(x, y);
bel.z = (bel_type << 8) | z;
@@ -118,16 +113,70 @@ BelId Arch::getBelByName(IdStringList name) const
IdStringList Arch::getBelName(BelId bel) const
{
- char bel_str[80] = {0};
-
int x = CycloneV::pos2x(bel.pos);
int y = CycloneV::pos2y(bel.pos);
int z = bel.z & 0xFF;
int bel_type = bel.z >> 8;
- snprintf(bel_str, 80, "%s.%03d.%03d.%03d", cyclonev->block_type_names[bel_type], x, y, z);
+ std::array<IdString, 4> ids{
+ id(cyclonev->block_type_names[bel_type]),
+ int2id.at(x),
+ int2id.at(y),
+ int2id.at(z),
+ };
+
+ return IdStringList(ids);
+}
- return IdStringList(id(bel_str));
+WireId Arch::getWireByName(IdStringList name) const
+{
+ // non-mistral wires
+ auto found_npnr = npnr_wirebyname.find(name);
+ if (found_npnr != npnr_wirebyname.end())
+ return found_npnr->second;
+ // mistral wires
+ NPNR_ASSERT(name.size() == 4);
+ CycloneV::rnode_type_t ty = id2rn_t.at(name[0]);
+ int x = id2int.at(name[1]);
+ int y = id2int.at(name[2]);
+ int z = id2int.at(name[3]);
+ return WireId(CycloneV::rnode(ty, x, y, z));
+}
+
+IdStringList Arch::getWireName(WireId wire) const
+{
+ if (wire.is_nextpnr_created()) {
+ // non-mistral wires
+ std::array<IdString, 4> ids{
+ id_WIRE,
+ int2id.at(CycloneV::rn2x(wire.node)),
+ int2id.at(CycloneV::rn2y(wire.node)),
+ wires.at(wire).name_override,
+ };
+ return IdStringList(ids);
+ } else {
+ std::array<IdString, 4> ids{
+ rn_t2id.at(CycloneV::rn2t(wire.node)),
+ int2id.at(CycloneV::rn2x(wire.node)),
+ int2id.at(CycloneV::rn2y(wire.node)),
+ int2id.at(CycloneV::rn2z(wire.node)),
+ };
+ return IdStringList(ids);
+ }
+}
+
+PipId Arch::getPipByName(IdStringList name) const
+{
+ WireId src = getWireByName(name.slice(0, 4));
+ WireId dst = getWireByName(name.slice(4, 8));
+ NPNR_ASSERT(src != WireId());
+ NPNR_ASSERT(dst != WireId());
+ return PipId(src.node, dst.node);
+}
+
+IdStringList Arch::getPipName(PipId pip) const
+{
+ return IdStringList::concat(getWireName(getPipSrcWire(pip)), getWireName(getPipDstWire(pip)));
}
std::vector<BelId> Arch::getBelsByTile(int x, int y) const
@@ -148,13 +197,13 @@ std::vector<BelId> Arch::getBelsByTile(int x, int y) const
* One ALM contains 2 LUT outputs and 4 flop outputs.
*/
for (int z = 0; z < 60; z++) {
- bels.push_back(BelId(pos, z));
+ bels.push_back(BelId(pos, (cvbel << 8 | z)));
}
break;
case CycloneV::block_type_t::GPIO:
// GPIO tiles contain 4 pins.
for (int z = 0; z < 4; z++) {
- bels.push_back(BelId(pos, z));
+ bels.push_back(BelId(pos, (cvbel << 8 | z)));
}
break;
default: