diff options
author | gatecat <gatecat@ds0.me> | 2021-07-12 13:00:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 13:00:44 +0100 |
commit | 24b7084feb6beecacbe447a15f9b2de04b14d685 (patch) | |
tree | aeb2cf09d41a4d7e184abc906b8d8e01cb85977f /fpga_interchange/arch_pack_io.cc | |
parent | a63e7b3db8875c0eec25029cdbbacc473e890894 (diff) | |
parent | f03abe14d19a8e05bfd5c15f168ae8b25a1285c0 (diff) | |
download | nextpnr-24b7084feb6beecacbe447a15f9b2de04b14d685.tar.gz nextpnr-24b7084feb6beecacbe447a15f9b2de04b14d685.tar.bz2 nextpnr-24b7084feb6beecacbe447a15f9b2de04b14d685.zip |
Merge pull request #760 from YosysHQ/gatecat/xcup-ibufds
interchange: Support for UltraScale+ differential input buffers
Diffstat (limited to 'fpga_interchange/arch_pack_io.cc')
-rw-r--r-- | fpga_interchange/arch_pack_io.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/fpga_interchange/arch_pack_io.cc b/fpga_interchange/arch_pack_io.cc index 19d8cece..38b619a3 100644 --- a/fpga_interchange/arch_pack_io.cc +++ b/fpga_interchange/arch_pack_io.cc @@ -55,8 +55,6 @@ bool search_routing_for_placement(Arch *arch, WireId start_wire, CellInfo *cell, WireId dst = downhill ? arch->getPipDstWire(pip) : arch->getPipSrcWire(pip); if (already_visited.count(dst)) return; - if (!arch->is_site_wire(dst) && arch->get_wire_category(dst) == WIRE_CAT_GENERAL) - return; // this pass only considers dedicated routing visit_queue.push(dst); already_visited.insert(dst); }; @@ -83,6 +81,7 @@ void Arch::place_iobufs(WireId pad_wire, NetInfo *net, if (ctx->verbose) log_info("Placed IO cell %s:%s at %s.\n", ctx->nameOf(cell_port.first), ctx->nameOf(cell_port.first->type), ctx->nameOfBel(cell_port.first->bel)); + placed_cells->insert(cell_port.first); } } @@ -246,7 +245,10 @@ void Arch::pack_ports() } if (possible_site_types.empty()) { - log_error("Port '%s' has no possible site types!\n", port_name.c_str(getCtx())); + if (getCtx()->verbose) + log_info("Port '%s' has no possible site types, falling back to all types!\n", + port_name.c_str(getCtx())); + possible_site_types = package_pin_site_types; } if (getCtx()->verbose) { @@ -315,6 +317,7 @@ void Arch::pack_ports() for (CellInfo *cell : placed_cells) { NPNR_ASSERT(cell->bel != BelId()); if (!isBelLocationValid(cell->bel)) { + explain_bel_status(cell->bel); log_error("Tightly bound BEL %s was not valid!\n", nameOfBel(cell->bel)); } } |