Skip to content

Commit 6ba875c

Browse files
authored
Merge pull request #2948 from Pinata-Consulting/io-placer-consistent
platforms: IO_PLACER_H/V can be overriden by designs
2 parents 8f68e19 + aa0528f commit 6ba875c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

flow/platforms/ihp-sg13g2/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ export MATCH_CELL_FOOTPRINT = 1
7575
export PLACE_SITE = CoreSite
7676

7777
# IO Placer pin layers
78-
export IO_PLACER_H = Metal2
79-
export IO_PLACER_V = Metal3
78+
export IO_PLACER_H ?= Metal2
79+
export IO_PLACER_V ?= Metal3
8080

8181
# Define default PDN config
8282
export PDN_TCL ?= $(PLATFORM_DIR)/pdn.tcl

flow/platforms/nangate45/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export ABC_LOAD_IN_FF = 3.898
5050
export PLACE_SITE = FreePDK45_38x28_10R_NP_162NW_34O
5151

5252
# IO Placer pin layers
53-
export IO_PLACER_H = metal5
54-
export IO_PLACER_V = metal6
53+
export IO_PLACER_H ?= metal5
54+
export IO_PLACER_V ?= metal6
5555

5656
# Define default PDN config
5757
export PDN_TCL ?= $(PLATFORM_DIR)/grid_strategy-M1-M4-M7.tcl

flow/platforms/sky130hd/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ export MATCH_CELL_FOOTPRINT = 1
9393
export PLACE_SITE = unithd
9494

9595
# IO Placer pin layers
96-
export IO_PLACER_H = met3
97-
export IO_PLACER_V = met2
96+
export IO_PLACER_H ?= met3
97+
export IO_PLACER_V ?= met2
9898

9999
# Define default PDN config
100100
export PDN_TCL ?= $(PLATFORM_DIR)/pdn.tcl

flow/platforms/sky130hs/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export MATCH_CELL_FOOTPRINT = 1
5555
export PLACE_SITE = unit
5656

5757
# IO Placer pin layers
58-
export IO_PLACER_H = met3
59-
export IO_PLACER_V = met2
58+
export IO_PLACER_H ?= met3
59+
export IO_PLACER_V ?= met2
6060

6161
# Define default PDN config
6262
export PDN_TCL ?= $(PLATFORM_DIR)/pdn.tcl

0 commit comments

Comments
 (0)