blob: 7e559703263f5182849b80bd81f61443fc8d8f6c [file] [log] [blame]
# SPDX-FileCopyrightText: 2020 Efabless Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# SPDX-License-Identifier: Apache-2.0
# Base Configurations. Don't Touch
# section begin
set script_dir [file dirname [file normalize [info script]]]
source $script_dir/../../caravel/openlane/user_project_wrapper_empty/fixed_wrapper_cfgs.tcl
set ::env(DESIGN_NAME) user_project_wrapper
#section end
# User Configurations
## Source Verilog Files
set ::env(VERILOG_FILES) "\
$script_dir/../../caravel/verilog/rtl/defines.v \
$script_dir/../../verilog/rtl/openram_testchip.v \
$script_dir/../../verilog/rtl/user_project_wrapper.v "
## Clock configurations
set ::env(CLOCK_PORT) {io_in\[17\]}
set ::env(CLOCK_NET) "CONTROL_LOGIC.clk"
set ::env(RESET_PORT) {io_in\[15\] wb_rst_i}
set ::env(CLOCK_PERIOD) "30"
set ::env(BASE_SDC_FILE) "$script_dir/user_project_wrapper.sdc"
## Internal Macros
### Macro Placement
set ::env(MACRO_PLACEMENT_CFG) $script_dir/macro.cfg
### Black-box verilog and views
set ::env(VERILOG_FILES_BLACKBOX) "\
$script_dir/../../caravel/verilog/rtl/defines.v \
$script_dir/../../verilog/rtl/sky130_sram_1kbyte_1rw1r_32x256_8.v \
$script_dir/../../verilog/rtl/sky130_sram_1kbyte_1rw1r_8x1024_8.v \
$script_dir/../../verilog/rtl/sky130_sram_2kbyte_1rw1r_32x512_8.v \
$script_dir/../../verilog/rtl/sky130_sram_4kbyte_1rw1r_32x1024_8.v \
$script_dir/../../verilog/rtl/sky130_sram_8kbyte_1rw1r_32x2048_8.v \
$script_dir/../../verilog/rtl/sky130_sram_1kbyte_1rw_32x256_8.v \
$script_dir/../../verilog/rtl/sky130_sram_2kbyte_1rw_32x512_8.v \
$script_dir/../../verilog/rtl/sky130_sram_4kbyte_1rw_32x1024_8.v \
$script_dir/../../verilog/rtl/sky130_sram_4kbyte_1rw_64x512_8.v \
$script_dir/../../verilog/rtl/sky130_sram_8kbyte_1rw_64x1024_8.v"
#$script_dir/../../verilog/rtl/openram_testchip.v
set ::env(EXTRA_LEFS) "\
$script_dir/../../lef/sky130_sram_1kbyte_1rw1r_32x256_8.lef \
$script_dir/../../lef/sky130_sram_1kbyte_1rw1r_8x1024_8.lef \
$script_dir/../../lef/sky130_sram_2kbyte_1rw1r_32x512_8.lef \
$script_dir/../../lef/sky130_sram_4kbyte_1rw1r_32x1024_8.lef \
$script_dir/../../lef/sky130_sram_8kbyte_1rw1r_32x2048_8.lef \
$script_dir/../../lef/sky130_sram_1kbyte_1rw_32x256_8.lef \
$script_dir/../../lef/sky130_sram_2kbyte_1rw_32x512_8.lef \
$script_dir/../../lef/sky130_sram_4kbyte_1rw_32x1024_8.lef \
$script_dir/../../lef/sky130_sram_4kbyte_1rw_64x512_8.lef \
$script_dir/../../lef/sky130_sram_8kbyte_1rw_64x1024_8.lef"
# $script_dir/../../lef/openram_testchip.lef
set ::env(EXTRA_GDS_FILES) "\
$script_dir/../../gds/sky130_sram_1kbyte_1rw1r_32x256_8.gds \
$script_dir/../../gds/sky130_sram_1kbyte_1rw1r_8x1024_8.gds \
$script_dir/../../gds/sky130_sram_2kbyte_1rw1r_32x512_8.gds \
$script_dir/../../gds/sky130_sram_4kbyte_1rw1r_32x1024_8.gds \
$script_dir/../../gds/sky130_sram_8kbyte_1rw1r_32x2048_8.gds \
$script_dir/../../gds/sky130_sram_1kbyte_1rw_32x256_8.gds \
$script_dir/../../gds/sky130_sram_2kbyte_1rw_32x512_8.gds \
$script_dir/../../gds/sky130_sram_4kbyte_1rw_32x1024_8.gds \
$script_dir/../../gds/sky130_sram_4kbyte_1rw_64x512_8.gds \
$script_dir/../../gds/sky130_sram_8kbyte_1rw_64x1024_8.gds"
# $script_dir/../../gds/openram_testchip.gds
set ::env(GLB_RT_MAXLAYER) 5
set ::env(FP_PDN_CHECK_NODES) 0
# Power config
#set ::env(FP_PIN_ORDER_CFG) $script_dir/pin_order.cfg
# Placement config
set ::env(PL_OPENPHYSYN_OPTIMIZATIONS) 0
set ::env(PL_DIAMOND_SEARCH_HEIGHT) 500
#set ::env(PL_RANDOM_GLB_PLACEMENT) 1
set ::env(GLB_RT_ADJUSTMENT) 0.25
set ::env(PL_TARGET_DENSITY) 0.25
#set ::env(MAGIC_DRC_USE_GDS) 0
set ::env(RUN_KLAYOUT_DRC) 0
set ::env(RUN_KLAYOUT_XOR) 0
# Spray diodes
set ::env(DIODE_INSERTION_STRATEGY) 1
# The following is because there are no std cells in the example wrapper project.
#set ::env(SYNTH_TOP_LEVEL) 1
#set ::env(PL_RANDOM_GLB_PLACEMENT) 1
#set ::env(PL_RESIZER_DESIGN_OPTIMIZATIONS) 0
#set ::env(PL_RESIZER_TIMING_OPTIMIZATIONS) 0
#set ::env(PL_RESIZER_BUFFER_INPUT_PORTS) 0
#set ::env(PL_RESIZER_BUFFER_OUTPUT_PORTS) 0
#set ::env(DIODE_INSERTION_STRATEGY) 0
#set ::env(FILL_INSERTION) 0
#set ::env(TAP_DECAP_INSERTION) 0
# set ::env(CLOCK_TREE_SYNTH) 0