Files
OpenLane/scripts/openroad/irdrop.tcl
Mohamed Gaber dbcc8252e9 Ameliorate Warnings, PDN Generation, and the default design (#2066)
~ Reimplemented the default serial/parallel multiplier to be a bit less cryptic and eliminate linter warnings; and added a proper testbench
~ Reimplemented deprecated variable translation behavior to account for the situation where a deprecated variable's value does not match the default for the new value, which causes a crash
~ Slightly improved warning for designs having been black-boxed during STA
~ PDN Generation Updates
    ~ Renamed `DESIGN_IS_CORE` to `FP_PDN_MULTILAYER` with translation behavior
    ~ PDN generation will now always attempt to extend to core ring (which is inert if core rings do not exist)
    ~ Fixed bug where `FP_PDN_MULTILAYER` being set to `0` would attempt to create a core-ring on two layers anyway
~ IR drop now prints a warning if `VSRC_LOC_FILE` is not provided
- Removed deprecation behavior for `GLB_RT` variables - it's been over a year (>=6 mo as promised)
2023-12-25 20:48:46 +02:00

45 lines
1.5 KiB
Tcl

# Copyright 2022 Efabless Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source $::env(SCRIPTS_DIR)/openroad/common/io.tcl
read -set_lib_operating_conditions
read_spef $::env(CURRENT_SPEF)
source $::env(SCRIPTS_DIR)/openroad/common/set_rc.tcl
if { [info exists ::env(VSRC_LOC_FILES)] } {
foreach {net vsrc_file} "$::env(VSRC_LOC_FILES)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
lappend arg_list -vsrc $vsrc_file
analyze_power_grid {*}$arg_list
}
} else {
foreach net "$::env(VDD_NETS)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
analyze_power_grid {*}$arg_list
}
foreach net "$::env(GND_NETS)" {
set arg_list [list]
lappend arg_list -net $net
lappend arg_list -outfile $::env(_tmp_save_rpt_prefix)-$net.rpt
set_pdnsim_net_voltage -net $net -voltage 0
analyze_power_grid {*}$arg_list
}
}