axivdma
Vitis Drivers API Documentation
axivdma Documentation

This is the Xilinx MVI AXI Video DMA device driver. The DMA engine transfers frames from the AXI Bus or to the AXI Bus. It is in the chain of video IPs, which process video frames.

It supports the following features:

  • Continuous transfers of video frames, AKA circular buffer mode
  • Continuous transfers of one specific video frame, AKA park mode
  • Optionally only transfer a certain amount of video frames
  • Optionally transfer unaligned frame buffers

An AXI Video DMA engine can have one or two channels. If configured as two channels, then one of the channels reads data from memory, and the other channel writes to the memory.

For a full description of AXI Video DMA features, please see the hardware spec.

The driver composes of three parts: initialization, start a DMA transfer, and interrupt handling.

Driver Initialization

To initialize the driver, the caller needs to pass a configuration structure to the driver. This configuration structure contains information about the hardware build.

A caller can manually setup the configuration structure, or call XAxiVdma_LoopkupConfig().

The sequence of initialization of the driver is:

  1. XAxiVdma_LookupConfig() to get the configuration structure, or manually setup the structure.
  2. XAxiVdma_CfgInitialize() to initialize the driver & device.
  3. XAxiVdma_SetFrmStore() to set the desired frame store number which is optional.
  4. If interrupt is desired:
    • Set frame counter using XAxiVdma_SetFrameCounter()
    • Set call back functions for each channel. There are two types of call backfunctions: general and error
    • Enable interrupts that the user cares about

Start a DMA Transaction

If you are using the driver API to start the transfer, then there are two ways to start a DMA transaction:

  1. Invoke XAxiVdma_StartWriteFrame() or XAxiVdma_StartReadFrame() to start a DMA operation, depending on the purpose of the transfer (Read or Write).
  2. Or, call the phased functions as the following:

If you are writing your own functions to start the transfer, the order of setting up the hardware must be the following:

  • Do any processing or setting, but do not start the hardware, means do not set the RUN/STOP bit in the XAXIVDMA_CR_OFFSET register.
  • After any reset you need to do, write the head of your BD ring into the XAXIVDMA_CDESC_OFFSET register.
  • You can do other setup for the hardware.
  • Start your hardware, by setting up the RUN/STOP bit in the XAXIVDMA_CR_OFFSET register.
  • You can do other setup for the hardware.
  • If you are done with all the setup, now write the tail of your BD ring to the XAXIVDMA_TDESC_OFFSET register to start the transfer.

You can refer to XAxiVdma_ChannelStartTransfer() to see how this order is preserved there. The function is in xaxivdma_channel.c.

Note a Read VDMA could work with one out of multiple write VDMA instances and vice versa. The PointNum in structure XAxiVdma_DmaSetup decides which VDMA instance this VDMA is working with.

Interrupt Handling

Each VDMA channel supports 2 kinds of interrupts:

  • General Interrupt: An interrupt other than error interrupt.
  • Error Interrupt: An error just happened.

The driver does the interrupt handling, and dispatch to the user application through callback functions that user has registered. If there are no registered callback functions, then a stub callback function is called.

Each channel has two interrupt callback functions. One for IOC and delay interrupt, or general interrupt; one for error interrupt.

Reset

Reset a DMA channel causes the channel enter the following state:

  • Interrupts are disabled
  • Coalescing threshold is one
  • Delay counter is 0
  • RUN/STOP bit low
  • Halted bit high
  • XAXIVDMA_CDESC_OFFSET register has 0
  • XAXIVDMA_TDESC_OFFSET register has 0

If there is an active transfer going on when reset (or stop) is issued to the hardware, the current transfer will gracefully finish. For a maximum transfer length of (0x1FFF * 0xFFFF) bytes, on a 100 MHz system, it can take as long as 1.34 seconds, assuming that the system responds to DMA engine's requests quickly.

To ensure that the hardware finishes the reset, please use XAxiVdma_ResetNotDone() to check for completion of the reset.

To start a transfer after a reset, the following actions are the minimal requirement before setting RUN/STOP bit high to avoid crashing the system:

  • XAXIVDMA_CDESC_OFFSET register has a valid BD pointer, it should be the head of the BD ring.
  • XAXIVDMA_TDESC_OFFSET register has a valid BD pointer, it should be the tail of the BD ring.

If you are using the driver API to start a transfer after a reset, then it should be fine.

Stop

Stop a channel using XAxiVDma_DmaStop() is similar to a reset, except the registers are kept intact.

To start a transfer after a stop:

  • If there are error bits in the status register, then a reset is necessary. Please refer to the Reset section for more details on how to start a transfer after a reset.
  • If there are no error bits in the status register, then you can call XAxiVdma_DmaStart() to start the transfer again. Note that the transfer always starts from the first video frame.

Examples

We provide one example on how to use the AXI VDMA with AXI Video IPs. This example does not work by itself. To make it work, you must have two other Video IPs to connect to the VDMA. One of the Video IP does the write and the other does the read.

Cache Coherency

This driver does not handle any cache coherency for the data buffers. The application is responsible for handling cache coherency, if the cache is enabled.

Alignment

The VDMA supports any buffer alignment when DRE is enabled in the hardware configuration. It only supports word-aligned buffers otherwise. Note that "word" is defined by C_M_AXIS_MM2S_TDATA_WIDTH and C_S_AXIS_S2MM_TDATA_WIDTH for the read and write channel specifically.

If the horizontal frame size is not word-aligned, then DRE must be enabled in the hardware. Otherwise, undefined results happen.

Address Translation

Buffer addresses for transfers are physical addresses. If the system does not use MMU, then physical and virtual addresses are the same.

API Change from PLB Video DMA

We try to keep the API as consistent with the PLB Video DMA driver as possible. However, due to hardware differences, some of the PLB video DMA driver APIs are changed or removed. Two API functions are added to the AXI DMA driver.

For details on the API changes, please refer to xaxivdma_porting_guide.h.

MODIFICATION HISTORY:
Ver   Who  Date     Changes


1.00a jz 08/16/10 First release 2.00a jz 12/10/10 Added support for direct register access mode, v3 core 2.01a jz 01/19/11 Added ability to re-assign BD addresses Replaced include xenv.h with string.h in xaxivdma_i.h file. 2.01a rkv 03/28/11 Added support for frame store register and XAxiVdma_ChannelInit API is changed. 3.00a srt 08/26/11 - Added support for Flush on Frame Sync and dynamic programming of Line Buffer Thresholds.

  • XAxiVdma_ChannelErrors API is changed to support for Flush on Frame Sync feature.
  • Two flags, XST_VDMA_MISMATCH_ERROR & XAXIVDMA_MIS MATCH_ERROR are added to report error status when Flush on Frame Sync feature is enabled. 4.00a srt 11/21/11 - XAxiVdma_ChannelSetBufferAddr API is changed to support 32 Frame Stores.
  • XAxiVdma_ChannelConfig API is changed to support modified Park Offset Register bits.
  • Added APIs: XAxiVdma_FsyncSrcSelect() XAxiVdma_GenLockSourceSelect()
  • Modified structures XAxiVdma_Config and XAxiVdma to include new parameters. 4.01a srt 06/13/12 - Added APIs: XAxiVdma_GetDmaChannelErrors() XAxiVdma_ClearDmaChannelErrors() XAxiVdma_ClearChannelErrors()
  • XAxiVdma_ChannelErrors API is changed to remove Mismatch error logic.
  • Removed Error checking logic in the channel APIs. Provided User APIs to do this.
  • Added new error bit mask XAXIVDMA_SR_ERR_SOF_LATE_MASK
  • XAXIVDMA_MISMATCH_ERROR flag is deprecated.
    • Modified the logic of Error handling in interrupt handlers. 4.02a srt 10/11/12 - XAxiVdma_SetFrmStore function changed to remove Reset logic after setting number of frame stores. (CR 678734)
  • Changed Error bitmasks to support IP version 5.02a. (CR 679959) 4.03a srt 01/18/13 - Updated logic of GenLockSourceSelect() & FsyncSrcSelect() APIs for newer versions of IP (CR: 691052).
  • Modified CfgInitialize() API to initialize StreamWidth parameters and added TDATA_WIDTH parameters to tcl file (CR 691866)
  • Updated DDR base address for IPI designs (CR 703656). 4.04a srt 03/03/13 - Support for the GenlockRepeat Control bit (Bit 15) added in the new version of IP v5.04 (CR: 691391)

    • Updated driver tcl, xaxivdma_g.c and XAxiVdma_Config structure in xaxivdma.h to import the relevant VDMA IP DEBUG_INFO_* parameters into the driver. This fixes CR# 703738. 4.05a srt 05/01/3 - Merged v4.03a driver with v4.04a driver. Driver v4.03a - Supports VDMA IPv5.04a XPS release Driver v4.04a - Supports VDMA IPv6.00a IPI release The parameters C_ENABLE_DEBUG_* are only available in VDMA IPv6.00a. These parameters should be set to '1' for older versions of IP (XPS) and added this logic in the driver tcl file.
      • Added unalignment checks for Hsize and Stride (CR 710279) 4.06a srt 04/09/13 - Added support for the newly added S2MM_DMA_IRQ_MASK register (CR 734741) 5.0 adk 19/12/13 - Updated as per the New Tcl API's 5.1 adk 20/01/15 Added support for peripheral test. Created the self test example to include it on peripheral test's(CR#823144). 5.1 adk 29/01/15 Added the sefltest api (XAxiVdma_Selftest) to the driver source files (xaxivdma_selftest.c) and called this from the selftest example 6.0 vak 27/07/15 Added example for demonstarting triple buffer api. 6.0 vak 27/07/15 Added 64 bit addressing support to the driver. 6.0 vak 26/08/15 Added checks to align hsize and stride based on channel direction (read or write)(CR 874861) 6.1 sk 11/10/15 Used UINTPTR instead of u32 for Baseaddress CR# 867425. Changed the prototype of XAxiVdma_CfgInitialize API. 6.2 ms 01/23/17 Modified xil_printf statement in main function for all examples to ensure that "Successfully ran" and "Failed" strings are available in all examples. This is a fix for CR-965028. 6.3 ms 02/20/17 Fixed compilation error in xaxivdma_intr.c. CR-969129. ms 03/17/17 Modified the text file in examples folder for doxygen generation. ms 04/05/17 Modified Comment lines in functions of axivdma examples to recognize it as documentation block for doxygen generation of examples. 6.4 ms 04/18/17 Modified tcl file to add suffix U for all macro definitions of axivdma in xparameters.h ms 08/07/17 Fixed compilation warnings in xaxivdma_sinit.c 6.6 rsp 07/02/18 Add vertical flip states in config structures 6.12 sa 08/12/22 Updated the examples to use latest MIG cannoical define i.e XPAR_MIG_0_C0_DDR4_MEMORY_MAP_BASEADDR.