build/efinix/dbparser: workaround for Ti60F100S3F2 with only 3 PLLs

This commit is contained in:
Gwenhael Goavec-Merou 2023-10-17 13:17:12 +02:00
parent e499dd84b5
commit 5d7e9c94a6
1 changed files with 4 additions and 0 deletions

View File

@ -92,6 +92,10 @@ class EfinixDbParser:
if p.get('block') == block: if p.get('block') == block:
names.append(p.get('name')) names.append(p.get('name'))
# Ti60F100S3F2 has only 3 PLLs
if block == "pll" and self.device == "Ti60F100S3F2":
names.remove("PLL_BL0")
print(f"block {block}: names:{names}") print(f"block {block}: names:{names}")
return names return names