Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
13 years ago

TCL commands to export calibration report in external memory interface toolkit (EMIF)

I'm trying to find TCL commands to export calibration and margin reports in external memory interface toolkit (EMIF)

There are lots of examples of how to export design and timing analysis reports. But not EMIF reports.

EMIF does allow exporting reports from GUI, though. I don't believe it's not supported as TCL commands.

Specifically, it has to be somewhere in ::quartus::report package.

Thanks,

Evgeni

2 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    I am also looking for a solution to export calibration report from the command line. Please post the answer if you already found it.

    Thanks,

    Gokul
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    All,

    I have figured a way to do this. Please find the TCL below:

    # -----------------

    # Report Export

    load_package report

    load_report_database -type emit

    set panel "*Per DQS Group Calibration"

    set id [get_report_panel_id $panel]

    write_report_panel -file DDR_Per_DQS_Calibration_Report.xml -xml -id $id

    # ------------------

    Thanks,

    Gokul