caravel/openlane/mgmt_protect/pdn.tcl

170 lines
4.3 KiB
Tcl

# Power nets
if { [info exists ::env(FP_PDN_ENABLE_GLOBAL_CONNECTIONS)] } {
if { $::env(FP_PDN_ENABLE_GLOBAL_CONNECTIONS) == 1 } {
foreach power_pin $::env(STD_CELL_POWER_PINS) {
add_global_connection \
-net $::env(VDD_NET) \
-inst_pattern .* \
-pin_pattern $power_pin \
-power
}
foreach ground_pin $::env(STD_CELL_GROUND_PINS) {
add_global_connection \
-net $::env(GND_NET) \
-inst_pattern .* \
-pin_pattern $ground_pin \
-ground
}
}
}
if { $::env(FP_PDN_ENABLE_MACROS_GRID) == 1 &&
[info exists ::env(FP_PDN_MACRO_HOOKS)]} {
set pdn_hooks [split $::env(FP_PDN_MACRO_HOOKS) ","]
foreach pdn_hook $pdn_hooks {
set instance_name [lindex $pdn_hook 0]
set power_net [lindex $pdn_hook 1]
set ground_net [lindex $pdn_hook 2]
set power_pin [lindex $pdn_hook 3]
set ground_pin [lindex $pdn_hook 4]
if { $power_pin == "" || $ground_pin == "" } {
puts "FP_PDN_MACRO_HOOKS missing power and ground pin names"
exit -1
}
add_global_connection \
-net $power_net \
-inst_pattern $instance_name \
-pin_pattern $power_pin \
-power
add_global_connection \
-net $ground_net \
-inst_pattern $instance_name \
-pin_pattern $ground_pin \
-ground
}
}
set secondary []
foreach vdd $::env(VDD_NETS) gnd $::env(GND_NETS) {
if { $vdd != $::env(VDD_NET)} {
lappend secondary $vdd
set db_net [[ord::get_db_block] findNet $vdd]
if {$db_net == "NULL"} {
set net [odb::dbNet_create [ord::get_db_block] $vdd]
$net setSpecial
$net setSigType "POWER"
}
}
if { $gnd != $::env(GND_NET)} {
lappend secondary $gnd
set db_net [[ord::get_db_block] findNet $gnd]
if {$db_net == "NULL"} {
set net [odb::dbNet_create [ord::get_db_block] $gnd]
$net setSpecial
$net setSigType "GROUND"
}
}
}
puts "set_voltage_domain -name CORE -power $::env(VDD_NET) -ground $::env(GND_NET) \
-secondary_power $secondary"
set_voltage_domain -name CORE -power $::env(VDD_NET) -ground $::env(GND_NET) \
-secondary_power $secondary
# Assesses whether the design is the core of the chip or not based on the
# value of $::env(DESIGN_IS_CORE) and uses the appropriate stdcell section
define_pdn_grid \
-name stdcell_grid \
-starts_with POWER \
-voltage_domain CORE \
-pins "met4"
##vertical
add_pdn_stripe \
-grid stdcell_grid \
-layer met4 \
-width 0.9 \
-pitch 75.25 \
-offset 20 \
-spacing 36 \
-nets "vccd vssd" \
-starts_with POWER -extend_to_core_ring
add_pdn_stripe \
-grid stdcell_grid \
-layer met4 \
-width 0.9 \
-pitch 75.25 \
-offset 701.35 \
-number_of_straps 4 \
-spacing 36 \
-nets "vccd1 vssd1" \
-starts_with POWER -extend_to_core_ring
add_pdn_stripe \
-grid stdcell_grid \
-layer met4 \
-width 0.9 \
-pitch 50 \
-offset 329.2 \
-number_of_straps 2 \
-spacing 20 \
-nets "vccd2 vssd2" \
-starts_with POWER -extend_to_core_ring
add_pdn_stripe \
-grid stdcell_grid \
-layer met4 \
-width 0.9 \
-pitch 75.25 \
-offset 1274 \
-number_of_straps 2 \
-spacing 36 \
-nets "vdda1 vssa1" \
-starts_with POWER -extend_to_core_ring
add_pdn_stripe \
-grid stdcell_grid \
-layer met4 \
-width 0.9 \
-pitch 75.25 \
-offset 1278 \
-number_of_straps 2 \
-spacing 36 \
-nets "vdda2 vssa2" \
-starts_with POWER -extend_to_core_ring
#connect
add_pdn_connect \
-grid stdcell_grid \
-layers "$::env(FP_PDN_LOWER_LAYER) $::env(FP_PDN_UPPER_LAYER)"
add_pdn_stripe \
-grid stdcell_grid \
-layer $::env(FP_PDN_RAILS_LAYER) \
-width $::env(FP_PDN_RAIL_WIDTH) \
-followpins \
-starts_with POWER
add_pdn_connect \
-grid stdcell_grid \
-layers "met1 met4"
define_pdn_grid \
-macro \
-default \
-name macro \
-starts_with POWER \
-halo "$::env(FP_PDN_HORIZONTAL_HALO) $::env(FP_PDN_VERTICAL_HALO)"
add_pdn_connect \
-grid macro \
-layers "met3 met4"