hdlcoder.DUTPort
DUT port from an HDL Coder generated IP core, saved as an object array
Since R2020b
Description
This object represents each DUT port name from an HDL Coder™ generated IP core. The object represents the ports of your DUT on the target
hardware. When you generate an HDL IP core by running the IP Core
Generation
workflow, you map the ports to AXI4 slave
or AXI4-Stream interfaces. The port object contains information about these DUT ports and the
interfaces it is mapped to, based on the interface mapping information in the Target platform
interface table of the Set Target Interface task. After you use the mapPort
function, you can write to or read from the DUT ports by using the writePort
and
readPort
functions.
Creation
Description
creates a DUT port object as an object array, with additional properties specified by
name-value pair arguments.hPort
= hdlcoder.DUTPort(Name
)
Properties
Name
— Port name
string
Name of the input or output port of the DUT subsystem in your original model. When
you run the IP Core Generation
workflow, you obtain this information
from the Port Name section of the Target platform interface
table.
Example:
hPort
= hdlcoder.DUTPort("h_in",
...)
Data Types: string
| char
Direction
— Port direction
"IN" | "OUT" | "INOUT"
Direction of the DUT port, specified as IN
,
OUT
, or INOUT
. The port direction
INOUT
is supported for only the AXI4 and AXI4-Lite interface.
Example:
hPort
= hdlcoder.DUTPort(..., "Direction", "OUT",
...)
Data Types: char
IsComplex
— Complex data on the port
"true" | "false"
Complex data on the DUT port, specified as true
or
false
. HDL Coder supports complex data streaming on the AXI4-Stream interface. This setting
is supported for only the AXI4-Stream interface.
Example:
hPort
= hdlcoder.DUTPort(..., "IsComplex", "true",
...)
Data Types: char
DataType
— Port data type
numeric type | numerictype
Data type of the DUT port that is mapped to the AXI interface, specified as a
MATLAB® numeric type such as uint32
or a
numerictype
object. When you run the IP Core
Generation
workflow, you obtain this information from the Data
Type section of the Target platform interface table.
Example:
hPort
= hdlcoder.DUTPort(..., "DataType",
numerictype(1,16,10), ... )
Data Types: uint8
| uint16
| uint32
| uint64
Dimension
— Port dimensions
integer array
Dimensions of the DUT port that is mapped to the AXI interface, specified as an
integer array or any other data type. The dimensions
depend on whether the port mapped is a scalar or vector. For a scalar port, the
Dimension
is [1 1]
, and for an
N
-dimensional vector port, it is [1 N]
. When you
run the IP Core Generation
workflow, you obtain this information from
the Data Type section of the Target platform interface
table.
Example:
hPort
= hdlcoder.DUTPort(..., "Dimension", [1 6],
...)
Data Types: int8
| int16
| int32
| int64
| single
| double
IOInterface
— Target platform interface
string array | character array
Target platform interface that the DUT port is mapped to, specified as a string or
character array. When you run the IP Core Generation
workflow, you
obtain this information from the Target Platform Interfaces section
of the Target platform interface table.
Example:
hPort
= hdlcoder.DUTPort(..., "IOInterface",
"AXI4-Lite")
Data Types: string
| char
IOInterfaceMapping
— Target interface mapping
character array | string array | numeric type
Target platform interface mapping information, specified as a character array, string array, or numeric type.
Example:
hPort
= hdlcoder.DUTPort(..., "IOInterfaceMapping",
"0x100")
Data Types: string
| char
Examples
Create a DUT Port Object Mapped to AXI4 Slave Interface
Create an fpga
object to connect to a target
device and then use hdlcoder.DUTPort
object to specify the DUT
port.
Create an fpga
object for the target device.
hFPGA = fpga("Xilinx")
hFPGA = fpga with properties: Vendor: "Xilinx" Interfaces: [0x0 fpgaio.interface.InterfaceBase]
Add the AXI4 slave interface to the
hFPGA
object by using the addAXI4SlaveInterface
function.
%% AXI4-Lite addAXI4SlaveInterface(hFPGA, ... "InterfaceID", "AXI4-Lite", ... "BaseAddress", 0xA0000000, ... "AddressRange", 0x10000);
Create a hdlcoder.DUTPort
object for the AXI4-Lite Interface.
After you create the object, you can map the port to the IO interface by using the
mapPort
function.
% ... hPort_h_in1 = hdlcoder.DUTPort("h_in1", ... "Direction", "IN", ... "DataType", numerictype(1,16,10), ... "Dimension", [1 1], ... "IOInterface", "AXI4-Lite", ... "IOInterfaceMapping", "0x100"); mapPort(hFPGA, hPort_h_in1);
hPort_h_in1 = DUTPort with properties: Name: "h_in1" Direction: IN DataType: [1×1 embedded.numerictype] Dimension: [1 1] IOInterface: "AXI4-Lite" IOInterfaceMapping: "0x100"
Create a DUT Port Object Mapped to AXI4-Stream Interface
Create an fpga
object to connect to a target
device and then use hdlcoder.DUTPort
object to specify the DUT
port.
Create an fpga
object.
hFPGA = fpga("Xilinx")
hFPGA = fpga with properties: Vendor: "Xilinx" Interfaces: [0x0 fpgaio.interface.InterfaceBase]
Add the AXI4-Stream interface to the hFPGA
object by using the
addAXI4StreamInterface
function.
%% AXI4-Stream addAXI4StreamInterface(hFPGA, ... "InterfaceID", "AXI4-Stream", ... "WriteEnable", true, ... "ReadEnable", true, ... "WriteFrameLength", 1024, ... "ReadFrameLength", 1024);
Create a hdlcoder.DUTPort
object for an AXI4-Stream Interface.
After you create the object, you can map the port to the IO interface by using the
mapPort
function.
hPort_x_in_data = hdlcoder.DUTPort("x_in_data", ... "Direction", "IN", ... "DataType", numerictype(1,16,10), ... "Dimension", [1 1], ... "IOInterface", "AXI4-Stream") hPort_y_out_data = hdlcoder.DUTPort("y_out_data", ... "Direction", "OUT", ... "DataType", numerictype(1,32,20), ... "Dimension", [1 1], ... "IOInterface", "AXI4-Stream") mapPort(hFPGA, [hPort_x_in_data, hPort_y_out_data]);
hPort_x_in_data = DUTPort with properties: Name: "x_in_data" Direction: IN DataType: [1×1 embedded.numerictype] Dimension: [1 1] IOInterface: "AXI4-Stream" IOInterfaceMapping: "" hPort_y_out_data = DUTPort with properties: Name: "y_out_data" Direction: OUT DataType: [1×1 embedded.numerictype] Dimension: [1 1] IOInterface: "AXI4-Stream" IOInterfaceMapping: ""
Version History
Introduced in R2020b
See Also
Objects
Functions
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)