-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mock-array: add sta-report-checks and openroad-report-checks targets
Signed-off-by: Øyvind Harboe <[email protected]>
- Loading branch information
Showing
6 changed files
with
41 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
foreach libFile $::env(LIB_FILES) { | ||
if {[lsearch -exact $::env(ADDITIONAL_LIBS) $libFile] == -1} { | ||
read_liberty $libFile | ||
} | ||
} | ||
|
||
read_verilog results/asap7/mock-array_Element/base/6_final.v | ||
read_verilog $::env(RESULTS_DIR)/6_final.v | ||
read_verilog $::env(PLATFORM_DIR)/verilog/stdcell/empty.v | ||
|
||
link_design MockArray | ||
|
||
read_spef $::env(RESULTS_DIR)/6_final.spef | ||
for {set x 0} {$x < 8} {incr x} { | ||
for {set y 0} {$y < 8} {incr y} { | ||
read_spef -path ces_${x}_${y} results/asap7/mock-array_Element/base/6_final.spef | ||
} | ||
} | ||
|
||
read_sdc $::env(DESIGN_DIR)/constraints.sdc | ||
set_propagated_clock [get_clocks {clock}] |
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,2 @@ | ||
source $::env(SCRIPTS_DIR)/open.tcl | ||
source $::env(DESIGN_DIR)/report-checks.tcl |
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,3 @@ | ||
source $::env(SCRIPTS_DIR)/util.tcl | ||
|
||
log_cmd report_checks |
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,6 @@ | ||
# Using Verilog instead of .lib files for greater | ||
# detail in report_checks across module hierarchy, | ||
# even if we're using Element macros | ||
source $::env(DESIGN_DIR)/load.tcl | ||
|
||
source $::env(DESIGN_DIR)/report-checks.tcl |