Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
This page gives an overview of the bare-metal driver support for the Xilinx® LogiCORE™ IP AXI Direct Memory Access (AXI DMA) soft IP.   


Table of Contents

Table of Contents
excludeTable of Contents

Introduction


The AXI DMA core is a soft Xilinx IP core for use with the Xilinx Vivado® Design Suite. The AXI DMA provides high-bandwidth direct memory access between memory and AXI4-Stream target peripherals. Its optional scatter/gather capabilities also offload data movement tasks from the Central Processing Unit (CPU). 

For more information, please refer to the AXI DMA product page which includes links to the official documentation and resource utilization. 

Driver Sources

The source code for the driver is included with the Vitis Unified Software Platform installation, as well as being available in the Xilinx Github repository. 

<If there are multiple drivers supporting this IP, we should make that statement here and add to the table>


Driver NamePath in VitisPath in Github
axidma<Vitis Install Directory>/data/embedded/XilinxProcessorIPLib/drivers/axidma_<version>https://github.com/Xilinx/embeddedsw/tree/master/XilinxProcessorIPLib/drivers/axidma


Info

Note: To view the sources for a particular release, use the rel-version tag in github.  For example, for the 2020.1 release, the proper version of the code is: https://github.com/Xilinx/embeddedsw/tree/xilinx-v2020.1/XilinxProcessorIPLib/drivers/axidma


The driver source code is organized into different folders.  The table below shows the axidma driver source organization. 


DirectoryDescription
doc

Provides the API and data structure details

dataDriver .tcl and .mdd file
examplesExample applications that show how to use the driver features
srcDriver source files


Driver Implementation

For a full list of features supported by this IP, please refer to the AXI DMA product page.  


Features

The AXI DMA Standalone driver supports the following features: 
  • Simple DMA mode
  • Scatter/Gather Direct Memory Access (DMA)
  • multi-channel operation (up to 16 channels)
  • 64-bit Addressing
  • Key Hole Feature
  • Optional Data Re-Alignment Feature

Known Issues and Limitations

The following is a list of known limitations of the driver and features of the IP that are not currently implemented: 

  • No Support for Cyclic DMA mode.
  • When H/w is configured without DRE driver will throw an error if the user sends an unaligned error.
  • User application should handle buffer address alignment in case h/w is configured without DRE

Example Design Architecture 

The examples assumes AXIDMA is 



Example Applications

Refer to the driver examples directory for various example applications that exercise the different features of the driver. Each application is linked in the table below. The following sections describe the usage and expected output of the various applications.  These example applications can be imported into the Vitis IDE from the Board Support Package  settings tab. 

Links to Examples

Examples Path: https://github.com/Xilinx/embeddedsw/tree/master/XilinxProcessorIPLib/drivers/axidma/examples


Test NameExample SourceDescription
Self Testxaxidma_example_selftest.cThis example does a basic reset of the core and checks core is coming out of reset or not.
Scatter Gather DMA with Interruptsxaxidma_example_sg_intr.cThis example demonstrates how to transfer packets in interrupt mode when the core is configured in Scatter Gather Mode.
Scatter Gather DMA with Pollingxaxidma_example_sg_poll.cThis example demonstrates how to transfer packets in the scatter gather polled mode.
Simple DMA with Interruptxaxidma_example_simple_intr.cThis example demonstrates how to transfer packets in interrupt mode when the core is configured in Simple DMA Mode.
Simple DMA with Pollingxaxidma_example_simple_poll.cThis example demonstrates how to transfer packets in the polled mode when the core is configured in Simple DMA Mode.
SGDMA Multi-Packet Polled Modexaxidma_poll_multi_pkts.c

This example demonstrates how to transfer multiple packets in the polled mode when the core is configured in Scatter Gather Mode.


Example Application Usage

Self Test

This example does a basic reset of the core and checks core is coming out of reset or not.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran AxiDMASelfTest Example
--- Exiting main() --

Scatter Gather with Interrupts

This example demonstrates how to transfer packets in interrupt mode when the core is configured in Scatter Gather Mode.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran AXI DMA SG interrupt Example
--- Exiting main() ---

Scatter Gather with Polling

This example demonstrates how to transfer packets in the scatter gather polled mode.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran AXI DMA SG Polling Example
--- Exiting main() ---

Simple DMA with Interrupts

This example demonstrates how to transfer packets in interrupt mode when the core is configured in simple DMA mode.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran AXI DMA interrupt Example
--- Exiting main() ---

Simple DMA with Polling

This example demonstrates how to transfer packets in poll mode when the core is configured in simple DMA mode.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran XAxiDma_SimplePoll Example
--- Exiting main() ---

Scatter Gather Multi-Packet Polled Mode

This example demonstrates how to transfer multiple packets in poll mode when the core is configured in Scatter Gather Mode.

Expected Output

Code Block
themeMidnight
--- Entering main() ---
Successfully ran AXI DMA poll multi Example
--- Exiting main() ---



Change Log

2021.2

None

2021.1

https://github.com/Xilinx/embeddedsw/blob/xilinx_v2021.1/doc/ChangeLog#L400

2020.2

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2020.2/doc/ChangeLog#L341

2020.1

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2020.1/doc/ChangeLog#L285

2019.2

https://github.com/Xilinx/embeddedsw/blob/xilinx-v2019.2/doc/ChangeLog#L167


Related Links