1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-31 14:02:29 +00:00

Merge pull request #238 from YosysHQ/padin_gb_tmgfix

ice40: Fix timing class of 'padin' GB outputs
This commit is contained in:
David Shah
2019-02-20 22:17:33 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -1021,7 +1021,7 @@ TimingPortClass Arch::getPortTimingClass(const CellInfo *cell, IdString port, in
return TMG_IGNORE;
} else if (cell->type == id_SB_GB) {
if (port == id_GLOBAL_BUFFER_OUTPUT)
return TMG_COMB_OUTPUT;
return cell->gbInfo.forPadIn ? TMG_GEN_CLOCK : TMG_COMB_OUTPUT;
return TMG_COMB_INPUT;
} else if (cell->type == id_SB_WARMBOOT) {
return TMG_ENDPOINT;

2
tests

Submodule tests updated: 691dfb8204...baf928b5c6