Main Content

Set Up AXI Manager

Note

MATLAB®AXI master has been renamed to AXI manager. In the software and documentation, the terms "manager" and "subordinate" replace "master" and "slave," respectively.

To access on-board memory locations from MATLAB or Simulink®, you must include the AXI manager IP in your FPGA design. This IP connects to subordinate memory locations on the board. The IP also responds to read and write commands from MATLAB or Simulink, over JTAG, PCI Express®, or Ethernet cable.

Integrate AXI Manager IP in FPGA Design

To set up the AXI manager IP for access from MATLAB or Simulink, follow these setup steps:

  1. Add the path for the AXI manager IP files to your project using thesetupAXIManagerForQuartusfunction.

  2. Open Quartus®, and from the IP Catalog select the AXI manager IP in your FPGA design.

    • When using JTAG as a physical connection, select AXI Manager.

    • When using Ethernet as a physical connection, select UDP AXI Manager and Ethernet MAC Hub and add them to your project.

    • 当使用作为PCIe物理连接,选择PCIe AXI Manager and add it to your project.

  3. In your FPGA project, specify which addresses the AXI manager IP is allowed to access.

    Note

    The AXI manager IP supports AXI4 Lite, AXI4, and Altera®Avalon slave memory locations. The FPGA interconnect automatically converts AXI4 transactions to the protocol of each address.

  4. Compile your FPGA project, including the AXI manager IP.

  5. Connect your FPGA board to your host computer using a physical cable (JTAG, PCI Express, or Ethernet cable).

  6. Program the FPGA with your compiled design.

Note

Alternatively, you can perform these steps in the HDL Coder™ guided workflow by using a sample reference design, such as the one included in this example:Access DUT Registers on Intel Pure FPGA Board Using IP Core Generation Workflow.

After loading the design on your FPGA, you can access memory-mapped locations on the board.

To access the board from MATLAB, create anaximanagerobject and use thereadmemoryandwritememorymethods to read and write memory-mapped locations on the board.

To access the board from Simulink, create a Simulink model and includeAXI Manager WriteandAXI Manager Readin it. Configure the blocks to read and write memory-mapped locations on the board. For more information, seeUse Simulink to Access FPGA Locations.

JTAG Considerations

When using JTAG as a physical connection to your board, you might have additional IPs that use the same JTAG connection. Such IPs include Intel®SignalTap II or Xilinx®Vivado®Logic Analyzer cores. However, only one of these applications can use the JTAG cable at a time. You must release theaximanagerobject to return the JTAG resource for use by other applications.

However, the nonblocking capture mode enables you to simultaneously use FPGA data capture and AXI manager, which share a common JTAG interface. In this capture mode, you do not need to close or release the JTAG resource to switch between FPGA data capture and AXI manager. For more information, seeSimultaneous Use of FPGA Data Capture and AXI Manager.

The most common conflicting use of the JTAG cable is to reprogram the FPGA. You must stop any FPGA data capture or AXI manager JTAG connection before you can use the cable to program the FPGA.

主机和FP之间的最大数据速率GA is limited by the JTAG clock frequency. For Intel boards, the JTAG clock frequency is 12 MHz or 24 MHz. For Xilinx boards, the JTAG clock frequency is 33 MHz or 66 MHz. The JTAG frequency depends on the type of cable and the maximum clock frequency supported by the FPGA board.

See Also

||

Related Topics