Skip to content

Commit bd50a63

Browse files
author
htfab
committed
ci(gds): apply platform update from Krzysztof
1 parent 83c3e49 commit bd50a63

File tree

4 files changed

+218
-2
lines changed

4 files changed

+218
-2
lines changed

.github/workflows/gds.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ jobs:
4343
submodules: recursive
4444
path: 'orfs'
4545

46+
- name: Apply platform update
47+
run: |
48+
export UPDATE_DIR=$(realpath sg13g2-update)
49+
cd orfs/flow/platforms/ihp-sg13g2
50+
python $UPDATE_DIR/sg13g2-update.py
51+
cp $UPDATE_DIR/config.mk .
52+
4653
- name: Run the flow
4754
working-directory: 'orfs/flow'
4855
env:

designs/ihp-sg13g2/tt-chip/config.mk

-2
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,3 @@ export ADDITIONAL_GDS = \
4848
$(DESIGN_HOME)/$(PLATFORM)/$(DESIGN_NICKNAME)/macros/bondpad/gds/bondpad_70x70.gds
4949
export ADDITIONAL_LIBS = \
5050
$(IHP_PDK_ROOT)/ihp-sg13g2/libs.ref/sg13g2_io/liberty/sg13g2_io_dummy.lib
51-
export GDS_LAYER_MAP = \
52-
$(PLATFORM_DIR)/sg13g2.map

sg13g2-update/config.mk

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# Process node
2+
export PROCESS = ihp-sg13g2
3+
4+
#-----------------------------------------------------
5+
# Tech/Libs
6+
# ----------------------------------------------------
7+
export TECH_LEF = $(PLATFORM_DIR)/lef/sg13g2_tech.lef
8+
export SC_LEF = $(PLATFORM_DIR)/lef/sg13g2_stdcell.lef
9+
10+
export LIB_FILES = $(PLATFORM_DIR)/lib/sg13g2_stdcell_typ_1p20V_25C.lib \
11+
$(ADDITIONAL_LIBS)
12+
export GDS_FILES = $(PLATFORM_DIR)/gds/sg13g2_stdcell.gds \
13+
$(ADDITIONAL_GDS)
14+
15+
# Dont use cells to ease congestion
16+
# Specify at least one filler cell if none
17+
18+
# The *probe* are for inserting probe points and have metal shapes
19+
# on all layers.
20+
# *lpflow* cells are for multi-power domains
21+
export DONT_USE_CELLS += \
22+
sg13g2_lgcp_1 \
23+
sg13g2_sighold \
24+
sg13g2_slgcp_1 \
25+
sg13g2_dfrbp_2
26+
27+
28+
# Define fill cells
29+
export FILL_CELLS = sg13g2_fill_1 sg13g2_fill_2 sg13g2_decap_4 sg13g2_decap_8
30+
# -----------------------------------------------------
31+
# Yosys
32+
# ----------------------------------------------------
33+
# Set the TIEHI/TIELO cells
34+
# These are used in yosys synthesis to avoid logical 1/0's in the netlist
35+
export TIEHI_CELL_AND_PORT = sg13g2_tiehi L_HI
36+
export TIELO_CELL_AND_PORT = sg13g2_tielo L_LO
37+
38+
# Used in synthesis
39+
export MIN_BUF_CELL_AND_PORTS = sg13g2_buf_1 A X
40+
41+
# Yosys mapping files
42+
export LATCH_MAP_FILE = $(PLATFORM_DIR)/cells_latch.v
43+
export CLKGATE_MAP_FILE = $(PLATFORM_DIR)/cells_clkgate.v
44+
45+
# Define ABC driver and load
46+
export ABC_DRIVER_CELL = sg13g2_buf_4
47+
export ABC_LOAD_IN_FF = 6.0
48+
# Set yosys-abc clock period to first "clk_period" value or "-period" value found in sdc file
49+
export ABC_CLOCK_PERIOD_IN_PS ?= $(shell sed -nE "s/^set clk_period (.+)|.* -period (.+) .*/\1\2/p" $(SDC_FILE) | head -1 | awk '{print $$1*1000}')
50+
#--------------------------------------------------------
51+
# Floorplan
52+
# -------------------------------------------------------
53+
54+
# Placement site for core cells
55+
# This can be found in the technology lef
56+
export PLACE_SITE = CoreSite
57+
58+
# IO Placer pin layers
59+
export IO_PLACER_H = Metal2
60+
export IO_PLACER_V = Metal3
61+
62+
# Define default PDN config
63+
export PDN_TCL ?= $(PLATFORM_DIR)/pdn.tcl
64+
65+
# There are no Endcap and Welltie cells in this PDK, so
66+
# `cut_rows` has to be called from the tapcell script.
67+
export TAPCELL_TCL = $(PLATFORM_DIR)/tapcell.tcl
68+
69+
export MACRO_PLACE_HALO ?= 40 40
70+
export MACRO_PLACE_CHANNEL ?= 80 80
71+
72+
#---------------------------------------------------------
73+
# Place
74+
# --------------------------------------------------------
75+
# default cell padding for cells
76+
export CELL_PAD_IN_SITES_GLOBAL_PLACEMENT ?= 2
77+
export CELL_PAD_IN_SITES_DETAIL_PLACEMENT ?= 1
78+
export PLACE_DENSITY ?= 0.65
79+
# --------------------------------------------------------
80+
# CTS
81+
# -------------------------------------------------------
82+
# TritonCTS options
83+
export CTS_BUF_CELL ?= sg13g2_buf_2
84+
# ---------------------------------------------------------
85+
# Route
86+
# ---------------------------------------------------------
87+
# FastRoute options
88+
export MIN_ROUTING_LAYER ?= Metal2
89+
export MAX_ROUTING_LAYER ?= Metal5
90+
#export VIA_IN_PIN_MIN_LAYER ?= Metal1
91+
#export VIA_IN_PIN_MAX_LAYER ?= Metal1
92+
#export DISABLE_VIA_GEN ?= 1
93+
#
94+
# Define fastRoute tcl
95+
export FASTROUTE_TCL ?= $(PLATFORM_DIR)/fastroute.tcl
96+
97+
# KLayout technology file
98+
export KLAYOUT_TECH_FILE = $(PLATFORM_DIR)/sg13g2.lyt
99+
#
100+
# Rules for metal fill
101+
export FILL_CONFIG = $(PLATFORM_DIR)/fill.json
102+
#
103+
# Template definition for power grid analysis
104+
#export TEMPLATE_PGA_CFG ?= $(PLATFORM_DIR)/template_pga.cfg
105+
106+
# OpenRCX extRules
107+
export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
108+
109+
110+
# GDS streaming
111+
#
112+
export GDS_LAYER_MAP = $(PLATFORM_DIR)/sg13g2.map
113+
114+
# ---------------------------------------------------------
115+
# IR Drop
116+
# ---------------------------------------------------------
117+
118+
# IR drop estimation supply net name to be analyzed and supply voltage variable
119+
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
120+
export PWR_NETS_VOLTAGES ?= "VDD 1.2"
121+
export GND_NETS_VOLTAGES ?= "VSS 0.0"
122+
export IR_DROP_LAYER ?= Metal1
123+
124+
# DRC Check
125+
export KLAYOUT_DRC_FILE = $(PLATFORM_DIR)/drc/sg13g2_minimal.lydrc
126+
127+
#LVS Check
128+
export CDL_FILE = $(PLATFORM_DIR)/cdl/sg13g2_stdcell.cdl
129+
#export KLAYOUT_LVS_FILE = $(PLATFORM_DIR)/lvs/$(PLATFORM).lylvs

sg13g2-update/sg13g2-update.py

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
import requests
2+
import os
3+
4+
def download_github_file(repo_owner, repo_name, branch, file_path, local_dir):
5+
"""
6+
Download a file from a specific branch of a GitHub repository.
7+
8+
Args:
9+
repo_owner (str): Owner of the repository.
10+
repo_name (str): Name of the repository.
11+
branch (str): Branch name from which to download the file.
12+
file_path (str): Path to the file in the repository.
13+
local_dir (str): Local directory to save the file.
14+
15+
Returns:
16+
None
17+
"""
18+
# Construct the URL to access the file
19+
base_url = f"https://raw.githubusercontent.com/{repo_owner}/{repo_name}/{branch}/{file_path}"
20+
21+
# Send a GET request to download the file
22+
response = requests.get(base_url)
23+
response.raise_for_status() # Raise an exception for HTTP errors
24+
25+
# Ensure the local directory exists
26+
if not os.path.exists(local_dir):
27+
os.makedirs(local_dir)
28+
29+
# Define the local path to save the file
30+
local_file_path = os.path.join(local_dir, os.path.basename(file_path))
31+
32+
# Write the content to the file
33+
with open(local_file_path, 'wb') as file:
34+
file.write(response.content)
35+
36+
print(f"File saved to {local_file_path}")
37+
38+
owner= 'IHP-GmbH'
39+
repo_name= 'IHP-Open-PDK'
40+
branch = 'dev'
41+
42+
# Klayout
43+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/sg13g2.lyp', '.')
44+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/sg13g2.lyt', '.')
45+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_maximal.lydrc', 'drc')
46+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.tech/klayout/tech/drc/sg13g2_minimal.lydrc', 'drc')
47+
# LIB
48+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_slow_1p35V_125C.lib', 'lib')
49+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_slow_1p08V_125C.lib', 'lib')
50+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_fast_1p32V_m40C.lib', 'lib')
51+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_fast_1p65V_m40C.lib', 'lib')
52+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_typ_1p20V_25C.lib', 'lib')
53+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lib/sg13g2_stdcell_typ_1p50V_25C.lib', 'lib')
54+
# wait for official update
55+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_dummy.lib', 'lib')
56+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_fast_1p32V_3p6V_m40C.lib', 'lib')
57+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_fast_1p65V_3p6V_m40C.lib', 'lib')
58+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_slow_1p08V_3p0V_125C.lib', 'lib')
59+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_slow_1p35V_3p0V_125C.lib', 'lib')
60+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_typ_1p2V_3p3V_25C.lib', 'lib')
61+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lib/sg13g2_io_typ_1p5V_3p3V_25C.lib', 'lib')
62+
# GDS
63+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/gds/sg13g2_stdcell.gds', 'gds')
64+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/gds/sg13g2_io.gds', 'gds')
65+
# LEF
66+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lef/sg13g2_tech.lef', 'lef')
67+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/lef/sg13g2_stdcell.lef', 'lef')
68+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lef/sg13g2_io.lef', 'lef')
69+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/lef/sg13g2_io_notracks.lef', 'lef')
70+
# Verilog
71+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/verilog/sg13g2_stdcell.v', 'verilog')
72+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/verilog/sg13g2_io.v', 'verilog')
73+
# CDL
74+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_stdcell/cdl/sg13g2_stdcell.cdl', 'cdl')
75+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_io/cdl/sg13g2_io.cdl', 'cdl')
76+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_1024x64_c2_bm_bist.cdl', 'cdl')
77+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_1024x64_c2_bm_bist.cdl', 'cdl')
78+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_2048x64_c2_bm_bist.cdl', 'cdl')
79+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_256x48_c2_bm_bist.cdl', 'cdl')
80+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_256x64_c2_bm_bist.cdl', 'cdl')
81+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_512x64_c2_bm_bist.cdl', 'cdl')
82+
download_github_file(owner, repo_name, branch, 'ihp-sg13g2/libs.ref/sg13g2_sram/cdl/RM_IHPSG13_1P_64x64_c2_bm_bist.cdl', 'cdl')

0 commit comments

Comments
 (0)