File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff 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
277277export IR_DROP_LAYER ?= M1
278278
279279# Allow empty GDS cell
Original file line number Diff line number Diff 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
122122export IR_DROP_LAYER ?= Metal1
123123
124124# DRC Check
Original file line number Diff line number Diff 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
108108export IR_DROP_LAYER ?= metal1
Original file line number Diff line number Diff 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
138138export IR_DROP_LAYER ?= met1
139139
140140# DRC Check
Original file line number Diff line number Diff 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
9999export IR_DROP_LAYER ?= met1
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments