-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
megaboom: branch predictors as macros
Signed-off-by: Øyvind Harboe <[email protected]>
- Loading branch information
Showing
3 changed files
with
93 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# based on ORFS/platforms/asap7/openRoad/pdn/BLOCK_grid_strategy.tcl, | ||
# but added power higher up | ||
|
||
#################################### | ||
# global connections | ||
#################################### | ||
add_global_connection -net {VDD} -inst_pattern {.*} -pin_pattern {^VDD$} -power | ||
add_global_connection -net {VSS} -inst_pattern {.*} -pin_pattern {^VSS$} -ground | ||
|
||
#################################### | ||
# voltage domains | ||
#################################### | ||
set_voltage_domain -name {CORE} -power {VDD} -ground {VSS} | ||
|
||
#################################### | ||
# standard cell grid | ||
# M1 M2 are for follow pin, width derived from PG rail in standard cell | ||
# M5 stripe width rerived from one of width allowed in LEF, offset and pitch | ||
# put stripe on M5 track | ||
# M4 M5 ring follow stripe width | ||
#################################### | ||
define_pdn_grid -name {top} -voltage_domains {CORE} | ||
|
||
add_pdn_ring -grid {top} -layers {M5 M4} -widths {0.12 0.12} -spacings {0.072} -core_offset {0.084} | ||
|
||
add_pdn_stripe -grid {top} -layer {M1} -width {0.018} -pitch {0.54} -offset {0} -followpins | ||
add_pdn_stripe -grid {top} -layer {M2} -width {0.018} -pitch {0.54} -offset {0} -followpins | ||
|
||
add_pdn_stripe -grid {top} -layer {M5} -width {0.12} -spacing {0.072} -pitch {2.976} -offset {1.5} -extend_to_core_ring | ||
|
||
add_pdn_connect -grid {top} -layers {M1 M2} | ||
add_pdn_connect -grid {top} -layers {M2 M5} | ||
add_pdn_connect -grid {top} -layers {M4 M5} | ||
# allow routing at all metal levels | ||
add_pdn_connect -grid {top} -layers {M5 M9} |