aboutsummaryrefslogtreecommitdiffhomepage
path: root/sim/win/mentor/msim_setup.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'sim/win/mentor/msim_setup.tcl')
-rw-r--r--sim/win/mentor/msim_setup.tcl441
1 files changed, 441 insertions, 0 deletions
diff --git a/sim/win/mentor/msim_setup.tcl b/sim/win/mentor/msim_setup.tcl
new file mode 100644
index 0000000..240bb0b
--- /dev/null
+++ b/sim/win/mentor/msim_setup.tcl
@@ -0,0 +1,441 @@
+
+# (C) 2001-2026 Intel Corporation. All rights reserved.
+# Your use of Intel Corporation's design tools, logic functions and
+# other software and tools, and its AMPP partner logic functions, and
+# any output files any of the foregoing (including device programming
+# or simulation files), and any associated documentation or information
+# are expressly subject to the terms and conditions of the Intel
+# Program License Subscription Agreement, Intel MegaCore Function
+# License Agreement, or other applicable license agreement, including,
+# without limitation, that your use is for the sole purpose of
+# programming logic devices manufactured by Intel and sold by Intel
+# or its authorized distributors. Please refer to the applicable
+# agreement for further details.
+
+# ----------------------------------------
+# Auto-generated simulation script msim_setup.tcl
+# ----------------------------------------
+# This script provides commands to simulate the following IP detected in
+# your Quartus project:
+# pll_io.pll_io
+# ddr_o.ddr_o
+# ddr_i.ddr_i
+#
+# Intel recommends that you source this Quartus-generated IP simulation
+# script from your own customized top-level script, and avoid editing this
+# generated script.
+#
+# To write a top-level script that compiles Intel simulation libraries and
+# the Quartus-generated IP in your project, along with your design and
+# testbench files, copy the text from the TOP-LEVEL TEMPLATE section below
+# into a new file, e.g. named "mentor.do", and modify the text as directed.
+#
+# ----------------------------------------
+# # TOP-LEVEL TEMPLATE - BEGIN
+# #
+# # QSYS_SIMDIR is used in the Quartus-generated IP simulation script to
+# # construct paths to the files required to simulate the IP in your Quartus
+# # project. By default, the IP script assumes that you are launching the
+# # simulator from the IP script location. If launching from another
+# # location, set QSYS_SIMDIR to the output directory you specified when you
+# # generated the IP script, relative to the directory from which you launch
+# # the simulator.
+# #
+# set QSYS_SIMDIR <script generation output directory>
+# #
+# # Source the generated IP simulation script.
+# source $QSYS_SIMDIR/mentor/msim_setup.tcl
+# #
+# # Set any compilation options you require (this is unusual).
+# set USER_DEFINED_COMPILE_OPTIONS <compilation options>
+# set USER_DEFINED_VHDL_COMPILE_OPTIONS <compilation options for VHDL>
+# set USER_DEFINED_VERILOG_COMPILE_OPTIONS <compilation options for Verilog>
+# #
+# # Call command to compile the Quartus EDA simulation library.
+# dev_com
+# #
+# # Call command to compile the Quartus-generated IP simulation files.
+# com
+# #
+# # Add commands to compile all design files and testbench files, including
+# # the top level. (These are all the files required for simulation other
+# # than the files compiled by the Quartus-generated IP simulation script)
+# #
+# vlog <compilation options> <design and testbench files>
+# #
+# # Set the top-level simulation or testbench module/entity name, which is
+# # used by the elab command to elaborate the top level.
+# #
+# set TOP_LEVEL_NAME <simulation top>
+# #
+# # Set any elaboration options you require.
+# set USER_DEFINED_ELAB_OPTIONS <elaboration options>
+# #
+# # Call command to elaborate your design and testbench.
+# elab
+# #
+# # Run the simulation.
+# run -a
+# #
+# # Report success to the shell.
+# exit -code 0
+# #
+# # TOP-LEVEL TEMPLATE - END
+# ----------------------------------------
+#
+# IP SIMULATION SCRIPT
+# ----------------------------------------
+# ACDS 26.1 110 win32 2026.05.10.00:14:46
+
+# ----------------------------------------
+# Initialize variables
+if ![info exists SYSTEM_INSTANCE_NAME] {
+ set SYSTEM_INSTANCE_NAME ""
+} elseif { ![ string match "" $SYSTEM_INSTANCE_NAME ] } {
+ set SYSTEM_INSTANCE_NAME "/$SYSTEM_INSTANCE_NAME"
+}
+
+if ![info exists TOP_LEVEL_NAME] {
+ set TOP_LEVEL_NAME "ddr_i.ddr_i"
+}
+
+if ![info exists QSYS_SIMDIR] {
+ set QSYS_SIMDIR "./../"
+}
+
+if ![info exists QUARTUS_INSTALL_DIR] {
+ set QUARTUS_INSTALL_DIR "C:/altera_pro/26.1/quartus/"
+}
+
+if ![info exists QUARTUS_SIM_LIB_DIR] {
+ set QUARTUS_SIM_LIB_DIR "$QUARTUS_INSTALL_DIR/eda/sim_lib/"
+}
+
+if ![info exists DEVICES_SIM_LIB_DIR] {
+ set DEVICES_SIM_LIB_DIR "$QUARTUS_INSTALL_DIR/../devices/sim_lib/"
+}
+
+if ![info exists USER_DEFINED_COMPILE_OPTIONS] {
+ set USER_DEFINED_COMPILE_OPTIONS ""
+}
+
+if ![info exists USER_DEFINED_VHDL_COMPILE_OPTIONS] {
+ set USER_DEFINED_VHDL_COMPILE_OPTIONS ""
+}
+
+if ![info exists USER_DEFINED_VERILOG_COMPILE_OPTIONS] {
+ set USER_DEFINED_VERILOG_COMPILE_OPTIONS ""
+}
+
+if ![info exists USER_DEFINED_ELAB_OPTIONS] {
+ set USER_DEFINED_ELAB_OPTIONS ""
+}
+
+if ![info exists SILENCE] {
+ set SILENCE "false"
+}
+
+if ![info exists PRECOMP_DEVICE_LIB_FILE] {
+ set PRECOMP_DEVICE_LIB_FILE ""
+}
+
+if ![info exists FORCE_MODELSIM_AE_SELECTION] {
+ set FORCE_MODELSIM_AE_SELECTION "false"
+}
+if ![info exists ENABLE_QE_LIBRARY_COMPILATION] {
+ set ENABLE_QE_LIBRARY_COMPILATION "false"
+}
+
+#-------------------------------------------
+# read .tcl file to override initialized variables
+if { [info exists ::env(QSYS_SIM_SCRIPT_QUESTASIM_OPTIONS_FILE)] && [file exist $::env(QSYS_SIM_SCRIPT_QUESTASIM_OPTIONS_FILE)] } {
+ echo "Sourcing $::env(QSYS_SIM_SCRIPT_QUESTASIM_OPTIONS_FILE)"
+ source $::env(QSYS_SIM_SCRIPT_QUESTASIM_OPTIONS_FILE)
+}
+
+
+# ----------------------------------------
+# Source Common Tcl File
+source $QSYS_SIMDIR/common/modelsim_files.tcl
+
+
+# ----------------------------------------
+# Initialize simulation properties - DO NOT MODIFY!
+set ELAB_OPTIONS ""
+set SIM_OPTIONS ""
+set LD_LIBRARY_PATH [dict create]
+if { ![ string match "*-64 vsim*" [ vsimVersionString ] ] } {
+ set SIMULATOR_TOOL_BITNESS "bit_32"
+} else {
+ set SIMULATOR_TOOL_BITNESS "bit_64"
+}
+set LD_LIBRARY_PATH [dict merge $LD_LIBRARY_PATH [dict get [get_env_variables $SIMULATOR_TOOL_BITNESS] "LD_LIBRARY_PATH"]]
+if {[dict size $LD_LIBRARY_PATH] !=0 } {
+ set LD_LIBRARY_PATH [subst [join [dict keys $LD_LIBRARY_PATH] ":"]]
+ setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH"
+}
+append ELAB_OPTIONS [subst [get_elab_options $SIMULATOR_TOOL_BITNESS]]
+append SIM_OPTIONS [subst [get_sim_options $SIMULATOR_TOOL_BITNESS]]
+
+proc check_precomp_device {precomp_device_lib_path force_select_modelsim_ae enable_qe_library_compilation} {
+ set len [string length $precomp_device_lib_path]
+ if {($len == 0) && ([string is false -strict [modelsim_ae_select $force_select_modelsim_ae]] || [string is true -strict $enable_qe_library_compilation])} {
+ return 1
+ }
+ return 0
+
+}
+
+proc modelsim_ae_select {force_select_modelsim_ae} {
+ if [string is true -strict $force_select_modelsim_ae] {
+ return 1
+ }
+ return [string match -nocase "*Altera*FPGA*" [ vsimVersionString ]]
+
+}
+
+
+# ----------------------------------------
+# Copy ROM/RAM files to simulation directory
+alias file_copy {
+ if [string is false -strict $SILENCE] {
+ echo "\[exec\] file_copy"
+ }
+ set memory_files [list]
+ set memory_files [concat $memory_files [get_memory_files "$QSYS_SIMDIR" "$QUARTUS_INSTALL_DIR"]]
+ foreach file $memory_files {
+ set itercount 0
+ while {$itercount < 10 && [file type $file] eq "link"} {
+ set nf [file readlink $file]
+ if {[string index $nf 0] ne "/"} {
+ set nf [file dirname $file]/$nf
+ }
+ set file $nf
+ }
+ set dest_file [file join ./ [file tail $file]]
+ set normalized_src [normalize_path "$file"]
+ set normalized_dest [normalize_path "$dest_file"]
+ if { $normalized_src ne $normalized_dest } {
+ file copy -force $file ./
+ }
+ }
+
+}
+# ----------------------------------------
+# Modify modelsim.ini if precompiled device libraries are in use
+if { $PRECOMP_DEVICE_LIB_FILE ne "" } {
+ echo "Modifying modelsim.ini according to $PRECOMP_DEVICE_LIB_FILE"
+ set PRECOMP_DEVICE_LIB_FILE [string trim $PRECOMP_DEVICE_LIB_FILE]
+ if { [file exists $PRECOMP_DEVICE_LIB_FILE] && [string match [file tail $PRECOMP_DEVICE_LIB_FILE] "modelsim.ini" ] } {
+ if { [file exists "modelsim.ini"] } {
+ echo "modelsim.ini already exists, making backup modelsim.ini.bak"
+ file copy -force "modelsim.ini" "modelsim.ini.bak"
+ }
+ echo "Copying modelsim.ini from $PRECOMP_DEVICE_LIB_FILE"
+ file copy -force $PRECOMP_DEVICE_LIB_FILE ./
+ } elseif { [file exists $PRECOMP_DEVICE_LIB_FILE] && [string match "*tcl" [file tail $PRECOMP_DEVICE_LIB_FILE] ] } {
+ echo "Running $PRECOMP_DEVICE_LIB_FILE to generate device library mapping"
+ source $PRECOMP_DEVICE_LIB_FILE
+ } else {
+ echo "Unable to use $PRECOMP_DEVICE_LIB_FILE for device library mapping. Switching back to local library compilation"
+ set PRECOMP_DEVICE_LIB_FILE ""
+ }
+}
+
+# ----------------------------------------
+# Create compilation libraries
+
+set logical_libraries [list "work" "work_lib" "lpm_ver" "sgate_ver" "altera_ver" "altera_mf_ver" "altera_lnsim_ver" "tennm_ver" "tennm_sm_hps_ver" "tennm_sm4_hssi_ver" "tennm_revb_hvio_ver" "tennm_revb_io96_ver"]
+
+proc ensure_lib { lib } { if ![file isdirectory $lib] { vlib $lib } }
+ensure_lib ./libraries/
+ensure_lib ./libraries/work/
+vmap work ./libraries/work/
+vmap work_lib ./libraries/work/
+
+# ----------------------------------------
+# get DPI libraries
+set libraries [dict create]
+set libraries [dict merge $libraries [get_dpi_libraries "$QSYS_SIMDIR"]]
+set dpi_libraries [dict values $libraries]
+
+# ----------------------------------------
+# setup shared libraries
+set DPI_LIBRARIES_ELAB ""
+if { [llength $dpi_libraries] != 0 } {
+ echo "Using DPI Library settings"
+ foreach library $dpi_libraries {
+ append DPI_LIBRARIES_ELAB "-sv_lib $library "
+ }
+}
+
+if [ check_precomp_device $PRECOMP_DEVICE_LIB_FILE $FORCE_MODELSIM_AE_SELECTION $ENABLE_QE_LIBRARY_COMPILATION ] {
+ ensure_lib ./libraries/lpm_ver/
+ vmap lpm_ver ./libraries/lpm_ver/
+ ensure_lib ./libraries/sgate_ver/
+ vmap sgate_ver ./libraries/sgate_ver/
+ ensure_lib ./libraries/altera_ver/
+ vmap altera_ver ./libraries/altera_ver/
+ ensure_lib ./libraries/altera_mf_ver/
+ vmap altera_mf_ver ./libraries/altera_mf_ver/
+ ensure_lib ./libraries/altera_lnsim_ver/
+ vmap altera_lnsim_ver ./libraries/altera_lnsim_ver/
+ ensure_lib ./libraries/tennm_ver/
+ vmap tennm_ver ./libraries/tennm_ver/
+ ensure_lib ./libraries/tennm_sm_hps_ver/
+ vmap tennm_sm_hps_ver ./libraries/tennm_sm_hps_ver/
+ ensure_lib ./libraries/tennm_sm4_hssi_ver/
+ vmap tennm_sm4_hssi_ver ./libraries/tennm_sm4_hssi_ver/
+ ensure_lib ./libraries/tennm_revb_hvio_ver/
+ vmap tennm_revb_hvio_ver ./libraries/tennm_revb_hvio_ver/
+ ensure_lib ./libraries/tennm_revb_io96_ver/
+ vmap tennm_revb_io96_ver ./libraries/tennm_revb_io96_ver/
+}
+set design_libraries [dict create]
+set design_libraries [dict merge $design_libraries [get_design_libraries]]
+set libraries [dict keys $design_libraries]
+foreach library $libraries {
+ ensure_lib ./libraries/$library/
+ vmap $library ./libraries/$library/
+ lappend logical_libraries $library
+}
+
+# ----------------------------------------
+# Compile device library files
+alias dev_com {
+ if [string is false -strict $SILENCE] {
+ echo "\[exec\] dev_com"
+ }
+ if [ check_precomp_device $PRECOMP_DEVICE_LIB_FILE $FORCE_MODELSIM_AE_SELECTION $ENABLE_QE_LIBRARY_COMPILATION ] {
+ eval vlog $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/220model.v" -work lpm_ver
+ eval vlog $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/sgate.v" -work sgate_ver
+ eval vlog $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/altera_primitives.v" -work altera_ver
+ eval vlog $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/altera_mf.v" -work altera_mf_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/altera_lnsim.sv" -work altera_lnsim_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/tennm_atoms.sv" -work tennm_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/mentor/tennm_atoms_ncrypt.sv" -work tennm_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/fmica_atoms_ncrypt.sv" -work tennm_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_sm_hps.sv" -work tennm_sm_hps_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_sm_hps_ncrypt.sv" -work tennm_sm_hps_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_sm4_hssi.sv" -work tennm_sm4_hssi_ver
+ eval vlog -sv -suppress 7061,2583,13314,2244,2283,2600,3691 $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_sm4_hssi_ncrypt.sv" -work tennm_sm4_hssi_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_revb_hvio.sv" -work tennm_revb_hvio_ver
+ eval vlog -sv -suppress 2583 $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_revb_hvio_ncrypt.sv" -work tennm_revb_hvio_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_revb_io96.sv" -work tennm_revb_io96_ver
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$DEVICES_SIM_LIB_DIR/tennm_revb_io96_ncrypt.sv" -work tennm_revb_io96_ver
+ }
+ eval vlog -sv $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_COMPILE_OPTIONS "$QUARTUS_SIM_LIB_DIR/simsf_dpi.cpp"
+}
+
+# ----------------------------------------
+# Compile the design files in correct order
+alias com {
+ if [string is false -strict $SILENCE] {
+ echo "\[exec\] com"
+ }
+ set design_files [dict create]
+ set design_files [dict merge [get_common_design_files $USER_DEFINED_COMPILE_OPTIONS $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_VHDL_COMPILE_OPTIONS "$QSYS_SIMDIR"]]
+ set common_design_files [dict values $design_files]
+ foreach file $common_design_files {
+ eval $file
+ }
+ set design_files [list]
+ set design_files [concat $design_files [get_design_files $USER_DEFINED_COMPILE_OPTIONS $USER_DEFINED_VERILOG_COMPILE_OPTIONS $USER_DEFINED_VHDL_COMPILE_OPTIONS "$QSYS_SIMDIR" "$QUARTUS_INSTALL_DIR"]]
+ foreach file $design_files {
+ eval $file
+ }
+}
+
+# ----------------------------------------
+# Elaborate top level design
+alias elab {
+ if [string is false -strict $SILENCE] {
+ echo "\[exec\] elab"
+ }
+ set elabcommand " $ELAB_OPTIONS $USER_DEFINED_ELAB_OPTIONS"
+ foreach library $logical_libraries { append elabcommand " -L $library" }
+ append elabcommand " $TOP_LEVEL_NAME $DPI_LIBRARIES_ELAB "
+ eval vsim $elabcommand
+}
+
+# ----------------------------------------
+# Elaborate the top level design with -voptargs=+acc option
+alias elab_debug {
+ if [string is false -strict $SILENCE] {
+ echo "\[exec\] elab_debug"
+ }
+ set elabcommand " $ELAB_OPTIONS $USER_DEFINED_ELAB_OPTIONS"
+ foreach library $logical_libraries { append elabcommand " -L $library" }
+ append elabcommand " $TOP_LEVEL_NAME $DPI_LIBRARIES_ELAB "
+ eval vsim -voptargs=+acc $elabcommand
+}
+
+# ----------------------------------------
+# Compile all the design files and elaborate the top level design
+alias ld "
+ dev_com
+ com
+ elab
+"
+
+# ----------------------------------------
+# Compile all the design files and elaborate the top level design with -voptargs=+acc
+alias ld_debug "
+ dev_com
+ com
+ elab_debug
+"
+
+# ----------------------------------------
+# Print out user commmand line aliases
+alias h {
+ echo "List Of Command Line Aliases"
+ echo
+ echo "file_copy -- Copy ROM/RAM files to simulation directory"
+ echo
+ echo "dev_com -- Compile device library files"
+ echo
+ echo "com -- Compile the design files in correct order"
+ echo
+ echo "elab -- Elaborate top level design"
+ echo
+ echo "elab_debug -- Elaborate the top level design with -voptargs=+acc option"
+ echo
+ echo "ld -- Compile all the design files and elaborate the top level design"
+ echo
+ echo "ld_debug -- Compile all the design files and elaborate the top level design with -voptargs=+acc"
+ echo
+ echo
+ echo
+ echo "List Of Variables"
+ echo
+ echo "TOP_LEVEL_NAME -- Top level module name."
+ echo " For most designs, this should be overridden"
+ echo " to enable the elab/elab_debug aliases."
+ echo
+ echo "SYSTEM_INSTANCE_NAME -- Instantiated system module name inside top level module."
+ echo
+ echo "QSYS_SIMDIR -- Qsys base simulation directory."
+ echo
+ echo "QUARTUS_INSTALL_DIR -- Quartus installation directory."
+ echo
+ echo "USER_DEFINED_COMPILE_OPTIONS -- User-defined compile options, added to com/dev_com aliases."
+ echo
+ echo "USER_DEFINED_VHDL_COMPILE_OPTIONS -- User-defined vhdl compile options, added to com/dev_com aliases."
+ echo
+ echo "USER_DEFINED_VERILOG_COMPILE_OPTIONS -- User-defined verilog compile options, added to com/dev_com aliases."
+ echo
+ echo "USER_DEFINED_ELAB_OPTIONS -- User-defined elaboration options, added to elab/elab_debug aliases."
+ echo
+ echo "SILENCE -- Set to true to suppress all informational and/or warning messages in the generated simulation script. "
+ echo
+ echo "PRECOMP_DEVICE_LIB_FILE -- Precompiled device library file."
+ echo " Use this variable to provide modelsim.ini or tcl containing device library mapping and dev_com will be skipped"
+ echo " If value is empty, device libraries will be compiled local"
+ echo
+ echo "FORCE_MODELSIM_AE_SELECTION -- Set to true to force to select Modelsim AE always."
+ echo
+ echo "ENABLE_QE_LIBRARY_COMPILATION -- Set to true to enable device library compilation for Questa FE."
+}
+file_copy
+h

Highly Recommended Verilog Books