Skip to content

Commit f74815f

Browse files
committed
Wire up the extra signals for sky130 io
1 parent 1958998 commit f74815f

File tree

6 files changed

+246
-109
lines changed

6 files changed

+246
-109
lines changed

chipflow_lib/platforms/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
from .silicon import SiliconPlatformPort, SiliconPlatform
1010
from .sim import SimPlatform
1111
from .utils import (
12-
IO_ANNOTATION_SCHEMA, IOSignature, IOModel,
12+
IO_ANNOTATION_SCHEMA, IOSignature, IOModel, IODriveMode, IOTripPoint, IOModelOptions,
1313
OutputIOSignature, InputIOSignature, BidirIOSignature,
1414
)
1515
from ._packages import PACKAGE_DEFINITIONS
1616

17-
__all__ = ['IO_ANNOTATION_SCHEMA', 'IOSignature', 'IOModel',
17+
__all__ = ['IO_ANNOTATION_SCHEMA', 'IOSignature',
18+
'IOModel', 'IOModelOptions', 'IODriveMode', 'IOTripPoint',
1819
'OutputIOSignature', 'InputIOSignature', 'BidirIOSignature',
1920
'SiliconPlatformPort', 'SiliconPlatform',
2021
'SimPlatform',

chipflow_lib/platforms/_packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .utils import QuadPackageDef, BareDiePackageDef, GAPackageDef, Package
1+
from .utils import QuadPackageDef, BareDiePackageDef, Package
22
from ._openframe import OpenframePackageDef
33

44
# Add any new package types to both PACKAGE_DEFINITIONS and the PackageDef union

0 commit comments

Comments
 (0)