External Memory Interfaces Intel® Stratix® 10 FPGA IP User Guide
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: mhi1438963423036
Ixiasoft
Visible to Intel only — GUID: mhi1438963423036
Ixiasoft
13.7.1.9. Example Tcl Script for Running the Legacy EMIF Debug Toolkit
The following example Tcl script opens a file, runs the debug toolkit, and writes the resulting calibration reports to a file.
You should adjust the variables in the script to match your design. You can then run the script using the command quartus_sh -t example.tcl.
# Modify the following variables for your project set project "ed_synth.qpf" # Index of the programming cable. Can be listed using "get_hardware_names" set hardware_index 1 # Index of the device on the specified cable. Can be listed using "get_device_names" set device_index 1 # SOF file containing the EMIF to debug set sof "ed_synth.sof" # Connection ID of the EMIF debug interface. Can be listed using "get_connections" set connection_id 2 # Output file set report "toolkit.rpt" # The following code opens a project and writes its calibration reports to a file. project_open $project load_package ::quartus::external_memif_toolkit initialize_connections set hardware_name [lindex [get_hardware_names] $hardware_index] set device_name [lindex [get_device_names -hardware_name $hardware_name] $device_index] link_project_to_device -device_name $device_name -hardware_name $hardware_name -sof_file $sof establish_connection -id $connection_id create_connection_report -id $connection_id -report_type summary create_connection_report -id $connection_id -report_type calib write_connection_target_report -id $connection_id -file $report