aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.cc
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-07-30 19:19:30 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-07-30 21:51:30 -0700
commita82f6f410595de26e82eaf4818e41036f0bc2f9c (patch)
tree22620c1be70ce79387d8309ccb46aceb295db0fa /ice40/arch.cc
parente4b044da52ce7d8fed2e461bec09c86cb293566d (diff)
downloadnextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.tar.gz
nextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.tar.bz2
nextpnr-a82f6f410595de26e82eaf4818e41036f0bc2f9c.zip
Modify predictDelay signature
Diffstat (limited to 'ice40/arch.cc')
-rw-r--r--ice40/arch.cc21
1 files changed, 13 insertions, 8 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 91c20b42..107bf56a 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -582,17 +582,19 @@ delay_t Arch::estimateDelay(WireId src, WireId dst) const
return xscale * abs(xd) + yscale * abs(yd) + offset;
}
-delay_t Arch::predictDelay(WireId src, WireId dst) const
+delay_t Arch::predictDelay(const NetInfo *net_info, const PortRef &sink) const
{
- NPNR_ASSERT(src != WireId());
- int x1 = chip_info->wire_data[src.index].x;
- int y1 = chip_info->wire_data[src.index].y;
+ const auto& driver = net_info->driver;
+ auto driver_loc = getBelLocation(driver.cell->bel);
+ auto sink_loc = getBelLocation(sink.cell->bel);
- NPNR_ASSERT(dst != WireId());
- int x2 = chip_info->wire_data[dst.index].x;
- int y2 = chip_info->wire_data[dst.index].y;
+ if (driver.port == id_cout) {
+ if (driver_loc.y == sink_loc.y)
+ return 0;
+ return 250;
+ }
- int xd = x2 - x1, yd = y2 - y1;
+ int xd = sink_loc.x - driver_loc.x, yd = sink_loc.y - driver_loc.y;
int xscale = 120, yscale = 120, offset = 0;
// if (chip_info->wire_data[src.index].type == WIRE_TYPE_SP4_VERT) {
@@ -600,6 +602,9 @@ delay_t Arch::predictDelay(WireId src, WireId dst) const
// offset = 500;
// }
+ if (driver.port == id_o) offset += 330;
+ if (sink.port == id_i0 || sink.port == id_i1 || sink.port == id_i2 || sink.port == id_i3) offset += 260;
+
return xscale * abs(xd) + yscale * abs(yd) + offset;
}