aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/arch.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-22 19:21:39 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-22 19:21:39 +0200
commit8850f86a8ab23de1274f05b1729c106f875f693a (patch)
tree3834d0f2e6cb74d8a7558449de0b8a1f3cf4dabf /ice40/arch.h
parent6a783ef94f31eb47cbf6c14b0e8793638d90dc88 (diff)
downloadnextpnr-8850f86a8ab23de1274f05b1729c106f875f693a.tar.gz
nextpnr-8850f86a8ab23de1274f05b1729c106f875f693a.tar.bz2
nextpnr-8850f86a8ab23de1274f05b1729c106f875f693a.zip
ice40: SB_LFOSC support, fabric routing only
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'ice40/arch.h')
-rw-r--r--ice40/arch.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/ice40/arch.h b/ice40/arch.h
index 74a1efcc..07c2582b 100644
--- a/ice40/arch.h
+++ b/ice40/arch.h
@@ -692,11 +692,6 @@ struct Arch : BaseCtx
bool checkPipAvail(PipId pip) const
{
assert(pip != PipId());
- if (args.type == ArchArgs::UP5K) {
- int x = chip_info->pip_data[pip.index].x;
- if (x == 0 || x == (chip_info->width - 1))
- return false;
- }
return switches_locked[chip_info->pip_data[pip.index].switch_index] ==
IdString();
}