Skip to content

Commit dea7121

Browse files
committed
gf180 test designs update
Signed-off-by: vijayank88 <[email protected]>
1 parent d6a4a76 commit dea7121

File tree

6 files changed

+11
-27
lines changed

6 files changed

+11
-27
lines changed

flow/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
# DESIGN_CONFIG=./designs/asap7/jpeg/config.mk
7777
# DESIGN_CONFIG=./designs/asap7/ethmac/config.mk
7878
# DESIGN_CONFIG=./designs/asap7/uart/config.mk
79+
# DESIGN_CONFIG=./designs/asap7/uart-blocks/config.mk
7980
# DESIGN_CONFIG=./designs/asap7/sha3/config.mk
8081
# DESIGN_CONFIG=./designs/asap7/riscv32i/config.mk
8182
# DESIGN_CONFIG=./designs/asap7/swerv_wrapper/config.mk
@@ -88,6 +89,7 @@
8889
# DESIGN_CONFIG=./designs/gf180/jpeg/config.mk
8990
# DESIGN_CONFIG=./designs/gf180/riscv32i/config.mk
9091
# DESIGN_CONFIG=./designs/gf180/sha3/config.mk
92+
# DESIGN_CONFIG=./designs/gf180/uart-blocks/config.mk
9193
#
9294
# Default design
9395
DESIGN_CONFIG ?= ./designs/nangate45/gcd/config.mk

flow/designs/gf180/uart-blocks/BLOCKS_grid_strategy.tcl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ set_voltage_domain -name {CORE} -power {VDD} -ground {VSS}
2121
define_pdn_grid -name {block} -voltage_domains {CORE}
2222
add_pdn_stripe -grid {block} -layer {Metal1} -width {0.900} -pitch {5.040} -offset {0} -followpins
2323
add_pdn_stripe -grid {block} -layer {Metal4} -width {4.480} -spacing {0.56} -pitch {44.8} -offset {22.4}
24+
if { [info exists ::env(BLOCKS)] && [expr {$::env(BLOCKS) == $::env(DESIGN_NAME)}] } {
25+
add_pdn_connect -grid {block} -layers {Metal1 Metal4}
26+
} else {
2427
add_pdn_stripe -grid {block} -layer {Metal5} -width {4.480} -pitch {89.6} -offset {44.8}
2528
add_pdn_connect -grid {block} -layers {Metal1 Metal4}
2629
add_pdn_connect -grid {block} -layers {Metal4 Metal5}
30+
}
2731
####################################
2832
# Block grids
2933
####################################

flow/designs/gf180/uart-blocks/uart_rx/BLOCKS_grid_strategy.tcl

Lines changed: 0 additions & 24 deletions
This file was deleted.

flow/designs/gf180/uart-blocks/uart_rx/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export CORE_ASPECT_RATIO = 1
1111
export CORE_MARGIN = 2
1212
export PLACE_DENSITY = 0.60
1313

14-
export PDN_TCL = ./designs/$(PLATFORM)/uart-blocks/$(DESIGN_NAME)/BLOCKS_grid_strategy.tcl
14+
export PDN_TCL = ./designs/$(PLATFORM)/uart-blocks/BLOCKS_grid_strategy.tcl
1515

1616
export HAS_IO_CONSTRAINTS = 1
1717
export PLACE_PINS_ARGS = -exclude bottom:* -exclude top:* -exclude right:*

jenkins/public_nightly.Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ pipeline {
9191
"ibex gf180",
9292
"jpeg gf180",
9393
"riscv32i gf180",
94-
"sha3 gf180";
94+
"sha3 gf180",
95+
"uart-blocks gf180";
9596
}
9697
}
9798

jenkins/public_tests_small.Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ pipeline {
6666
"ibex gf180",
6767
"jpeg gf180",
6868
"riscv32i gf180",
69-
"sha3 gf180";
69+
"sha3 gf180",
70+
"uart-blocks gf180";
7071
}
7172
}
7273

0 commit comments

Comments
 (0)