Skip to content

Commit 6144d24

Browse files
committed
designs: allow eqy to be disabled
Signed-off-by: Vitor Bandeira <[email protected]>
1 parent 97bbda1 commit 6144d24

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

flow/designs/asap7/aes/config.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export DESIGN_NICKNAME = aes
66
export VERILOG_FILES = $(sort $(wildcard ./designs/src/$(DESIGN_NICKNAME)/*.v))
77
export SDC_FILE = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)/constraint.sdc
88

9-
export ABC_AREA = 1
9+
export ABC_AREA = 1
1010

11-
export CORE_UTILIZATION = 40
11+
export CORE_UTILIZATION = 40
1212
export CORE_ASPECT_RATIO = 1
1313
export CORE_MARGIN = 2
1414
export PLACE_DENSITY = 0.65
1515
export TNS_END_PERCENT = 100
16-
export EQUIVALENCE_CHECK = 1
16+
export EQUIVALENCE_CHECK ?= 1
1717
export REMOVE_CELLS_FOR_EQY = TAPCELL*

flow/designs/asap7/jpeg/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ export PLACE_DENSITY = 0.60
1616
export DFF_LIB_FILE = $($(CORNER)_DFF_LIB_FILE)
1717

1818
export TNS_END_PERCENT = 100
19-
export EQUIVALENCE_CHECK = 1
19+
export EQUIVALENCE_CHECK ?= 1
2020
export REMOVE_CELLS_FOR_EQY = TAPCELL*

flow/designs/asap7/uart/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ export PLACE_DENSITY = 0.70
1010
export DIE_AREA = 0 0 17 17
1111
export CORE_AREA = 1.08 1.08 16 16
1212
export TNS_END_PERCENT = 100
13-
export EQUIVALENCE_CHECK = 1
13+
export EQUIVALENCE_CHECK ?= 1
1414
export REMOVE_CELLS_FOR_EQY = TAPCELL*

flow/designs/nangate45/aes/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export FLOORPLAN_DEF = ./designs/$(PLATFORM)/$(DESIGN_NICKNAME)/aes_ng45_fp.def
99

1010
export PLACE_DENSITY_LB_ADDON = 0.20
1111
export TNS_END_PERCENT = 100
12-
export EQUIVALENCE_CHECK = 1
12+
export EQUIVALENCE_CHECK ?= 1
1313
export REMOVE_CELLS_FOR_EQY = TAPCELL*
1414

flow/designs/sky130hd/gcd/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export ADDER_MAP_FILE :=
99

1010
export CORE_UTILIZATION = 40
1111
export TNS_END_PERCENT = 100
12-
export EQUIVALENCE_CHECK = 1
12+
export EQUIVALENCE_CHECK ?= 1
1313
export REMOVE_CELLS_FOR_EQY = sky130_fd_sc_hd__tapvpwrvgnd*

flow/designs/sky130hs/gcd/config.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export ADDER_MAP_FILE :=
1111
export CORE_UTILIZATION = 40
1212
export PLACE_DENSITY_LB_ADDON = 0.1
1313
export TNS_END_PERCENT = 100
14-
export EQUIVALENCE_CHECK = 1
14+
export EQUIVALENCE_CHECK ?= 1
1515
export REMOVE_CELLS_FOR_EQY = sky130_fd_sc_hs__tapvpwrvgnd*

0 commit comments

Comments
 (0)