Report on the status of the IP instances in the project.
Syntax
report_ip_status [‑name <arg>] [‑file <arg>] [‑append] [‑return_string]
[‑license_status] [‑resource_data] [‑quiet] [‑verbose]
Returns
True for success.
Usage
Name | Description |
---|---|
[-name]
|
Output the results to GUI panel with this name Values: The name of the GUI dialog |
[-file]
|
Filename to output results to (send output to console if -file is not used) Values: The report filename |
[-append]
|
Append to existing file |
[-return_string]
|
Return report as string |
[-license_status]
|
Report the license status of the generated outputs for each IP |
[-resource_data]
|
Report the resource data usage for each IP instance |
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
Categories
Description
- Instance Name - The name of the IP core in the current project.
- IP Status - A description of the state of the IP in the current project.
- Recommendation - A recommended action based on the status.
- Lock Status - An explanation of the lock status of the IP in the current project.
- Change Log - A reference to the change log for the IP update in the catalog. This will provide a description of the changes in the latest IP.
- IP Name - The name of the IP core in the catalog.
- IP Version - The version of the IP in use in the current project.
- New Version - The latest version of the IP in the catalog.
- New license - The license status for the new IP version.
- Original Part - The original part associated with the IP in the catalog.
IP cores that are out of date, or locked, may need to be upgraded and the output products regenerated. Refer to the Vivado Design Suite User Guide: Designing with IP (UG896) for more information.
The report_ip_status
command checks the available licenses on the local machine, or on the license server, for all IP cores in the current project. If a license can be found, the license information is printed. If the license cannot be found, this information is also printed.
This command returns the IP status report, or returns an error if it fails.
- To see the resource data usage in the Tcl console window, type "
report_ip_status -resource_data
". - To send the report to the return string, type "
report_ip_status -resource data -return_string
". - To send the report to a file, type "
report_ip_data -resource data -file <filename>
".
Arguments
-name <arg>
- (Optional) The name to assign to the results when run in GUI mode.
-file <arg>
- (Optional) Write the report into the specified file. The specified file will be overwritten if one already exists, unless -append
is also specified.
-append
- (Optional) Append the output of the command to the specified file rather than overwriting it.
-append
option can only be used with the -file
option.-return_string
- (Optional) Directs the output to a Tcl string rather than to the standard output. The Tcl string can be captured by a variable definition and parsed or otherwise processed.
-file
option.
-license_status
- (Optional) Limits the report to display only the various requirements and state of the licenses for IP used in the design.
-resource_data
- (Optional) Reports the resource data usage for each IP instance in the design.
-quiet
- (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
-verbose
- (Optional) Temporarily override any message limits and return all messages from this command.
set_msg_config
command.Examples
The following example reports the IP status to the specified file, appending the results if the file already exists:
report_ip_status -file C:/Data/reports/ip_status.txt -append