get_noc_connections - 2024.2 English - UG835

Vivado Design Suite Tcl Command Reference Guide (UG835)

Document ID
UG835
Release Date
2024-11-13
Version
2024.2 English

Get NOC Connections.

Syntax

get_noc_connections [‑source <arg>] [‑target <arg>] [‑filter <arg>]
    [‑quiet] [‑verbose] [<path>]

Usage

Name Description
[-source] Source NOC Interface to search.
[-target] Target NOC Interface to search.
[-filter] Filter NOC Connections with expression.
[-quiet] Ignore command errors
[-verbose] Suspend message limits during command execution
[<path>] NOC Connection path to search.

Categories

Description

This command returns a list of NoC connections in the design.

Arguments

-source - (Optional) Specifies source NoC interface to search

-target - (Optional) Specifies target NoC interface to search

-filter - (Optional) Filters NoC connections with expression

<path> - (Optional) Specify NoC connection path to search

-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.
Note: Any errors encountered on the command-line, while launching the command, will be returned. Only errors occurring inside the command will be trapped.
-verbose - (Optional) Temporarily override any message limits and return all messages from this command.
Note: Message limits can be defined with the set_msg_config command.

Example

The following example returns all NoC connections:

get_noc_connections

The following example searches a NoC source or target interface:

get_noc_connection -source [get_noc_interfaces my_design/M_AXI_nmu]
get_noc_connection -target [get_noc_interfaces my_design/M_AXI_nsu]

The following example filters NoC connections:

get_noc_connection -filter {name =~ *_2}