diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 15:24:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 15:24:36 +0000 |
commit | 53ed6979a964f3eaaabc0d97399eec9b4c3347f9 (patch) | |
tree | ebff2c62dcf311c0431b6b2d65cd73fe08464260 /fpga_interchange/arch.h | |
parent | 68ca923bfefde24fa2b7cbc8c6f9817f1d93e1e5 (diff) | |
parent | 694f9ec3a53c4d2d80869987a691aebb5415c9e0 (diff) | |
download | nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.tar.gz nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.tar.bz2 nextpnr-53ed6979a964f3eaaabc0d97399eec9b4c3347f9.zip |
Merge pull request #636 from litghost/add_pseudo_pip_data
Add pseudo pip data
Diffstat (limited to 'fpga_interchange/arch.h')
-rw-r--r-- | fpga_interchange/arch.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h index 84c0b7c8..6a3d7ad1 100644 --- a/fpga_interchange/arch.h +++ b/fpga_interchange/arch.h @@ -515,6 +515,20 @@ struct Arch : ArchAPI<ArchRanges> void assign_net_to_wire(WireId wire, NetInfo *net, const char *src, bool require_empty); + void assign_pip_pseudo_wires(PipId pip, NetInfo *net) + { + NPNR_ASSERT(net != nullptr); + WireId wire; + wire.tile = pip.tile; + const PipInfoPOD &pip_data = pip_info(chip_info, pip); + for (int32_t wire_index : pip_data.pseudo_cell_wires) { + wire.index = wire_index; + assign_net_to_wire(wire, net, "pseudo", /*require_empty=*/true); + } + } + + void remove_pip_pseudo_wires(PipId pip, NetInfo *net); + void unassign_wire(WireId wire); void bindPip(PipId pip, NetInfo *net, PlaceStrength strength) final; |