We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458682e commit 246f617Copy full SHA for 246f617
2 files changed
flow/platforms/asap7/config.mk
@@ -63,9 +63,12 @@ export SET_RC_TCL = $(PLATFORM_DIR)/setRC.tcl
63
64
# Route options
65
export MIN_ROUTING_LAYER ?= M2
66
-#export MIN_CLOCK_ROUTING_LAYER = M4
+export MIN_CLK_ROUTING_LAYER ?= M4
67
export MAX_ROUTING_LAYER ?= M7
68
69
+# Define fastRoute tcl
70
+export FASTROUTE_TCL ?= $(PLATFORM_DIR)/fastroute.tcl
71
+
72
# KLayout technology file
73
export KLAYOUT_TECH_FILE = $(PLATFORM_DIR)/KLayout/asap7.lyt
74
flow/platforms/asap7/fastroute.tcl
@@ -0,0 +1,3 @@
1
+set_global_routing_layer_adjustment $::env(MIN_ROUTING_LAYER)-$::env(MAX_ROUTING_LAYER) 0.25
2
+set_routing_layers -clock $::env(MIN_CLK_ROUTING_LAYER)-$::env(MAX_ROUTING_LAYER)
3
+set_routing_layers -signal $::env(MIN_ROUTING_LAYER)-$::env(MAX_ROUTING_LAYER)
0 commit comments