Main Content

Access FPGA External Memory Using AXI Manager over PCI Express

This example shows how to use AXI manager over PCI Express® (PCIe) to access the external memory connected to an FPGA. The FPGA includes a Xilinx® DDR memory controller for accessing the DDR memory. This memory controller provides an AXI4 slave interface for write and read operations by other components in the FPGA. The PCIe AXI manager feature provides an AXI manager object that you can use to access any memory mapped location in the FPGA. This example shows how to integrate PCIe AXI manager into a Xilinx Vivado® project and write and read data from the DDR memory using MATLAB®.

Requirements

  • Xilinx Vivado Design Suite, with supported version listed in Supported EDA Tools and Hardware

  • Xilinx Kintex® UltraScale+ FPGA KCU116 Evaluation Kit

  • HDL Verifier™ Support Package for Xilinx FPGA Boards

  • Host machine (PC) with PCIe slot

  • USB-JTAG cable

Setup

1. Set up the FPGA board. Connect the Xilinx KCU116 board to the host computer via PCIe and JTAG cables. The JTAG cable is used for programming the device.

2. Prepare the example in MATLAB. Set up the Xilinx Vivado tool path. Use your own Xilinx Vivado installation path when executing the command.

hdlsetuptoolpath('ToolName','Xilinx Vivado', ...
                 'ToolPath','C:\Xilinx\Vivado\2020.2\bin\vivado.bat');

Create a Vivado project for this example. The following MATLAB command creates a Vivado project named pcieaximaster.xpr and contains the IP Integrator block diagram and constraint files.

system('vivado -mode batch -source pcieAXIMcreateproject.tcl')

3. Configure the Vivado project with a Vivado IP. To use the PCIe as AXI Manager IP inside the Vivado IP Integrator, add the folder that contains the IP to the IP repository path setting for the Vivado project. Add the path to the project by executing this command in MATLAB.

setupAXIManagerForVivado pcieaximaster.xpr

Open the generated Vivado project in GUI mode by double-clicking the project in a file browser or by executing this command in MATLAB.

system('vivado pcieaximaster.xpr &')

4. Add PCIe AXI Manager IP to the FPGA design. In the Vivado GUI, open the block diagram design file pcieAXIMdesign_1.bd. You can find the design in the source file subwindow.

Set the address of xdma_0 (AXI Bridge Subsystem for PCI Express) and ddr4_0 (memory controller) as shown in this figure.

Alternatively, you can complete the above setup steps by executing Tcl commands in Vivado.

source ./pcieAXIMmodifydesign.tcl

5. Generate the FPGA programming file and program the FPGA. Click Generate Bitstream on the Vivado window to generate the FPGA programming file. Vivado might prompt you to save the project before proceeding to the next step. Generating the bitstream file takes about 5 to 10 minutes for Vivado to generate the bitstream file.

After Vivado generates the bitstream, program the FPGA by executing this command in MATLAB.

filProgramFPGA('Xilinx Vivado','pcieaximaster.runs\impl_1\pcieAXIMdesign_1.bit',1)

6. Reboot the host machine after programming the FPGA.

FPGA Write and Read Operations

Once the design is running on the FPGA board, you can write and read from the AXI subordinates that are connected to the PCIe AXI Manager IP. This example writes data to the DDR memory connected to the FPGA and then retrieves data into MATLAB.

Create the AXI manager object in MATLAB.

h = aximanager('Xilinx','interface','pcie');

Write and read from the memory locations on the FPGA. The following two lines use the AXI manager object h to write 100 to address 0 and then read from address 0 of the DDR memory.

writememory(h,0,100) readmemory(h,0,1)

See Also

| | |

Related Topics