Create a new debug port
Syntax
create_debug_port [‑quiet] [‑verbose] <name> <type>
Returns
new debug_port object
Usage
Name | Description |
---|---|
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<name>
|
Name of the debug core instance |
<type>
|
Type of the new debug port |
Description
Defines a new port to be added to an existing Vivado ILA debug core that was added to the design using the create_debug_core
command. The port provides connection points on an ILA core to attach nets from the design for debugging.
When a new debug core is created using the create_debug_core
command, it includes a clk
and probe
port by default. However, you can add trigger input/output port types as well. Refer to the Vivado Design Suite User Guide: Programming and Debugging (UG908) for more information on port types and purpose.
probe
ports to support multiple signals using the set_property port_width
command (see Examples).
You can connect signals to ports using the connect_debug_port
command, modify existing probe connections using modify_debug_ports
, and disconnect signals with the disconnect_debug_port
command.
Arguments
-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.<name> - (Required) The name of the ILA debug core to add the new port to. The debug core must already exist in the project having been created with create_debug_core
.
-
clk
- Defines the clock port for connecting the ILA debug core to a clock domain. Each debug core can only have oneclk
port, and eachclk
port can only connect to one clock domain. Therefore you must use multiple ILA cores to probe signals from different clock domains.Important: Ensure that the connected clocks are free-running clocks. Failure to do so could result in an inability to communicate with the debug core when the design is loaded onto the device. -
probe
- Provides probe points to connect to signals that are marked for debugging with the MARK_DEBUG property. The ILA debug core can contain multipleprobe
ports, which are automatically numbered by the Vivado tool when the port is added to the core. Eachprobe
port can contain one or more channels, or connection points, as defined by the PORT_WIDTH property. -
trig_in
/trig_in_ack
, andtrig_out
/trig_out_ack
- The ILA probe trigger comparators used to detect specific comparison conditions on theprobe
inputs to the ILA core.trig_in
andtrig_in_ack
, andtrig_out
andtrig_out_ack
should be added to the debug core as port pairs when used. Refer to the Vivado Design Suite User Guide: Programming and Debugging (UG908) for more information.
Examples
probe
port to the core, then sets the width of that new port to 8, and connects signals to the probe
port:
create_debug_core myCore ila
create_debug_port myCore probe
set_property PORT_WIDTH 8 myCore/probe1
connect_debug_port -channel_start_index 1 myCore/probe1 \
{m1_cyc_i m1_ack_o m1_err_o m1_rty_o}