Skip to content

Commit d331b37

Browse files
authored
Merge pull request #2679 from Pinata-Consulting/export-clean-out-superfluous-quotes
config.mk: clean out superfluous quotes in export statements
2 parents ceff92c + caa28fa commit d331b37

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

flow/platforms/asap7/config.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ ifeq ($(ASAP7_USELVT), 1)
165165

166166
export ABC_DRIVER_CELL = BUFx2_ASAP7_75t_L
167167

168-
export FILL_CELLS ?= "FILLERxp5_ASAP7_75t_L"
168+
export FILL_CELLS ?= FILLERxp5_ASAP7_75t_L
169169

170170
export TAP_CELL_NAME ?= TAPCELL_ASAP7_75t_L
171171

@@ -214,7 +214,7 @@ ifeq ($(ASAP7_USESLVT), 1)
214214

215215
export ABC_DRIVER_CELL = BUFx2_ASAP7_75t_SL
216216

217-
export FILL_CELLS ?= "FILLERxp5_ASAP7_75t_SL"
217+
export FILL_CELLS ?= FILLERxp5_ASAP7_75t_SL
218218

219219
export TAP_CELL_NAME ?= TAPCELL_ASAP7_75t_SL
220220

@@ -272,8 +272,8 @@ export DONT_USE_SC_LIB = $(OBJECTS_DIR)/lib/merged.lib
272272

273273
# IR drop estimation supply net name to be analyzed and supply voltage variable
274274
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
275-
export PWR_NETS_VOLTAGES ?= "VDD $(VOLTAGE)"
276-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
275+
export PWR_NETS_VOLTAGES ?= VDD $(VOLTAGE)
276+
export GND_NETS_VOLTAGES ?= VSS 0.0
277277
export IR_DROP_LAYER ?= M1
278278

279279
# Allow empty GDS cell

flow/platforms/ihp-sg13g2/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
117117

118118
# IR drop estimation supply net name to be analyzed and supply voltage variable
119119
# 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"
120+
export PWR_NETS_VOLTAGES ?= VDD 1.2
121+
export GND_NETS_VOLTAGES ?= VSS 0.0
122122
export IR_DROP_LAYER ?= Metal1
123123

124124
# DRC Check

flow/platforms/nangate45/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
103103

104104
# IR drop estimation supply net name to be analyzed and supply voltage variable
105105
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
106-
export PWR_NETS_VOLTAGES ?= "VDD 1.1"
107-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
106+
export PWR_NETS_VOLTAGES ?= VDD 1.1
107+
export GND_NETS_VOLTAGES ?= VSS 0.0
108108
export IR_DROP_LAYER ?= metal1

flow/platforms/sky130hd/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
133133

134134
# IR drop estimation supply net name to be analyzed and supply voltage variable
135135
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
136-
export PWR_NETS_VOLTAGES ?= "VDD 1.8"
137-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
136+
export PWR_NETS_VOLTAGES ?= VDD 1.8
137+
export GND_NETS_VOLTAGES ?= VSS 0.0
138138
export IR_DROP_LAYER ?= met1
139139

140140
# DRC Check

flow/platforms/sky130hs/config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,6 @@ export RCX_RULES = $(PLATFORM_DIR)/rcx_patterns.rules
9494

9595
# IR drop estimation supply net name to be analyzed and supply voltage variable
9696
# For multiple nets: PWR_NETS_VOLTAGES = "VDD1 1.8 VDD2 1.2"
97-
export PWR_NETS_VOLTAGES ?= "VDD 1.8"
98-
export GND_NETS_VOLTAGES ?= "VSS 0.0"
97+
export PWR_NETS_VOLTAGES ?= VDD 1.8
98+
export GND_NETS_VOLTAGES ?= VSS 0.0
9999
export IR_DROP_LAYER ?= met1

flow/scripts/final_report.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
3939

4040
# Static IR drop analysis
4141
if {[env_var_exists_and_non_empty PWR_NETS_VOLTAGES]} {
42-
dict for {pwrNetName pwrNetVoltage} {*}$::env(PWR_NETS_VOLTAGES) {
42+
dict for {pwrNetName pwrNetVoltage} $::env(PWR_NETS_VOLTAGES) {
4343
set_pdnsim_net_voltage -net ${pwrNetName} -voltage ${pwrNetVoltage}
4444
analyze_power_grid -net ${pwrNetName} \
4545
-error_file $::env(REPORTS_DIR)/${pwrNetName}.rpt
@@ -48,7 +48,7 @@ if {[env_var_exists_and_non_empty RCX_RULES]} {
4848
puts "IR drop analysis for power nets is skipped because PWR_NETS_VOLTAGES is undefined"
4949
}
5050
if {[env_var_exists_and_non_empty GND_NETS_VOLTAGES]} {
51-
dict for {gndNetName gndNetVoltage} {*}$::env(GND_NETS_VOLTAGES) {
51+
dict for {gndNetName gndNetVoltage} $::env(GND_NETS_VOLTAGES) {
5252
set_pdnsim_net_voltage -net ${gndNetName} -voltage ${gndNetVoltage}
5353
analyze_power_grid -net ${gndNetName} \
5454
-error_file $::env(REPORTS_DIR)/${gndNetName}.rpt

0 commit comments

Comments
 (0)