Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion chipflow/config/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ class Process(Enum):
"""
#: Skywater foundry open-source 130nm process
SKY130 = "sky130"
#: GlobalFoundries open-source 130nm process
#: GlobalFoundries open-source 130nm process (c4m-gf180 variant)
GF180 = "gf180"
#: GlobalFoundries open-source 180nm MCU PDK
GF180MCU = "gf180mcu"
#: Pragmatic Semiconductor FlexIC process (old)
HELVELLYN2 = "helvellyn2"
#: GlobalFoundries 130nm BCD process
Expand Down
2 changes: 1 addition & 1 deletion chipflow/platform/silicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def port_for_process(p: Process):
match p:
case Process.SKY130:
return Sky130Port
case Process.GF180 | Process.HELVELLYN2 | Process.GF130BCD | Process.IHP_SG13G2:
case Process.GF180 | Process.GF180MCU | Process.HELVELLYN2 | Process.GF130BCD | Process.IHP_SG13G2:
return SiliconPlatformPort


Expand Down
Loading