mirror of https://github.com/YosysHQ/nextpnr.git
himbaechel/xilinx: don't pair FFs with SRL/LUTRAM on a different clock
pack_lutffs constrains an FF into the same slice position as the LUT driving its D input. When that driver is an SRL or LUTRAM cell it has a CLK of its own: the slice write clock. A slice has a single CLK input per half, so the placement validity check (xc7_logic_tile_valid) rejects any slice where the FF clock and the memory write clock differ in net or polarity. Pairing such an FF anyway creates a relatively-constrained cluster that is invalid at every bel on the device; the placer's strict legalisation phase then spins forever trying to place it (observed as a static-placer hang on a design clocking an SRL and its capture FF from different clocks). Only pair the FF when the driving cell either has no CLK or shares the FF's clock net and IS_CLK_INVERTED polarity. Hardware-verified on xc7a100t as part of a MEGA65 core port that previously hung in placement. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
68c1acd80a
commit
c39f26e93a
|
|
@ -310,6 +310,17 @@ void XilinxPacker::pack_lutffs()
|
|||
ci->constr_z = lut->constr_z + (BEL_FF - BEL_6LUT);
|
||||
++pairs;
|
||||
} else {
|
||||
// For SRL/LUTRAM drivers the slice write clock is the slice
|
||||
// CLK, which the FF must share (same net, same polarity) —
|
||||
// otherwise the cluster is unplaceable (xc7_logic_tile_valid
|
||||
// FF-clk-vs-wclk check rejects it at every bel and
|
||||
// legalisation spins forever).
|
||||
NetInfo *lut_clk = lut->getPort(id_CLK);
|
||||
if (lut_clk != nullptr &&
|
||||
(ci->getPort(id_CK) != lut_clk ||
|
||||
bool_or_default(ci->params, id_IS_CLK_INVERTED, false) !=
|
||||
bool_or_default(lut->params, id_IS_CLK_INVERTED, false)))
|
||||
continue;
|
||||
lut->constr_children.push_back(ci);
|
||||
lut->cluster = lut->name;
|
||||
ci->cluster = lut->name;
|
||||
|
|
|
|||
Loading…
Reference in New Issue