aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
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 19:19:30 -0700
commita099aca3c203eeea6b6cd093f31089c2a0933927 (patch)
treeba8e996d2118331bfaf618124da8b831962d1827 /ice40
parentd5049bf0eda113db9a218fe855c7e3d7d65b4384 (diff)
downloadnextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.gz
nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.tar.bz2
nextpnr-a099aca3c203eeea6b6cd093f31089c2a0933927.zip
Modify predictDelay signature
Diffstat (limited to 'ice40')
-rw-r--r--ice40/arch.cc41
-rw-r--r--ice40/arch.h2
2 files changed, 13 insertions, 30 deletions
diff --git a/ice40/arch.cc b/ice40/arch.cc
index 4b28564a..76ce6a39 100644
--- a/ice40/arch.cc
+++ b/ice40/arch.cc
@@ -587,40 +587,23 @@ 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) {
- // yd = yd < -4 ? yd + 4 : (yd < 0 ? 0 : yd);
- // offset = 500;
- // }
-
- // Estimate for output mux
- for (const auto &bp : getWireBelPins(src)) {
- if (bp.pin == PIN_O && getBelType(bp.bel) == TYPE_ICESTORM_LC) {
- offset += 330;
- break;
- }
- }
-
- // Estimate for input mux
- for (const auto &bp : getWireBelPins(dst)) {
- if ((bp.pin == PIN_I0 || bp.pin == PIN_I1 || bp.pin == PIN_I2 || bp.pin == PIN_I3) &&
- getBelType(bp.bel) == TYPE_ICESTORM_LC) {
- offset += 260;
- break;
- }
- }
+ 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;
}
diff --git a/ice40/arch.h b/ice40/arch.h
index c2768efe..a4d148e5 100644
--- a/ice40/arch.h
+++ b/ice40/arch.h
@@ -697,7 +697,7 @@ struct Arch : BaseCtx
// -------------------------------------------------
delay_t estimateDelay(WireId src, WireId dst) const;
- delay_t predictDelay(WireId src, WireId dst) const;
+ delay_t predictDelay(const NetInfo *net_info, const PortRef &sink) const;
delay_t getDelayEpsilon() const { return 20; }
delay_t getRipupDelayPenalty() const { return 200; }
float getDelayNS(delay_t v) const { return v * 0.001; }