aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authormyrtle <gatecat@ds0.me>2022-12-07 16:19:55 +0100
committerGitHub <noreply@github.com>2022-12-07 16:19:55 +0100
commit0eb53d59d84ea1c46de7d9e25eb5a9901544202d (patch)
treeaa7203b5b1064f327b863e7d4cb025b6292c55e4 /ecp5
parent519011533a3b7582b984226536cb424d462d1599 (diff)
parentdf99b4ff6c5ce88ce1a731dc8682ab1875b8c237 (diff)
downloadnextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.tar.gz
nextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.tar.bz2
nextpnr-0eb53d59d84ea1c46de7d9e25eb5a9901544202d.zip
Merge pull request #1059 from YosysHQ/gatecat/validity-errors
Add new option for verbose validity errors, use for ice40
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.h2
-rw-r--r--ecp5/arch_place.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index a40719c1..6ce3c4ce 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -1010,7 +1010,7 @@ struct Arch : BaseArch<ArchRanges>
// -------------------------------------------------
// Placement validity checks
- bool isBelLocationValid(BelId bel) const override;
+ bool isBelLocationValid(BelId bel, bool explain_invalid = false) const override;
// Helper function for above
bool slices_compatible(LogicTileStatus *lts) const;
diff --git a/ecp5/arch_place.cc b/ecp5/arch_place.cc
index fed9c055..3151cc3e 100644
--- a/ecp5/arch_place.cc
+++ b/ecp5/arch_place.cc
@@ -178,7 +178,7 @@ bool Arch::slices_compatible(LogicTileStatus *lts) const
return true;
}
-bool Arch::isBelLocationValid(BelId bel) const
+bool Arch::isBelLocationValid(BelId bel, bool explain_invalid) const
{
IdString bel_type = getBelType(bel);
if (bel_type.in(id_TRELLIS_COMB, id_TRELLIS_FF, id_TRELLIS_RAMW)) {