Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

This page gives an overview of CSUDMA driver which is available as part of the Xilinx Vivado and

...

Vitis distribution.

...

CSUDMA

...

provides an efficient data transfer

...

mechanism between the PSS's Memory and the CSU Stream Peripherals.

On ZynqMP, the CSU_DMA is present inside CSU (Configuration Security Unit) module which is located within the Low-Power Subsystem (LPS) internal to the PS.

On Versal it is known as PMCDMA and present in PMC (used for Platform Management). CSUDMA is used interchangeably for PMCDMA in this documentation and driver unless specified.
CSU_DMA allows the CSU to move data efficiently between the memory (32 bit AXI interface) and the CSU stream peripherals (SHA, AES and PCAP) via Secure
Stream Switch (SSS). The CSU_DMA is a 2 channel simple DMA, allowing separate control of the SRC (read) channel and DST (write) channel. The DMA is effectively able to transfer data:

...

  • From PS-side to the SSS-side (SRC DMA only)

...

  • From SSS-side to the PS-side (DST DMA only)

...

  • Simultaneous PS-side to SSS_side and SSS-side to the PS-side

How to enable

...

For more information, please refer to CSUDMA chapter in ZynqMP TRM (UG1085) or PMCDMA chapter in Versal TRM (AM011).

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. 

Driver Name

Path in Vitis

Path in Github

emapcs

<Vitis Install Directory>/data/embedded/XilinxProcessorIPLib/drivers/csudma

https://github.com/Xilinx/embeddedsw/tree/master/XilinxProcessorIPLib/drivers/csudma


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/

...

...


The driver source code is organized into different folders.

...

  The table below shows the csudma driver source organization

Directory

...

Description

...

doc

...

Provides the API and data structure details

...

data

Driver .tcl and .mdd file

examples

Example applications that show how to use the driver

...

features

src

Driver source files

Driver Implementation

For a full list of features supported by this IP, please refer to CSUDMA chapter in ZynqMP TRM (UG1085) or PMCDMA chapter in Versal TRM (AM011) for respective devices.

Features

...

Controller

...

/Driver features supported

  • Simple DMA, no scatter-gather

  • Separate read channel (SRC) and write channel(DST) DMA

  • Read channel fetches data from the PS-side(memory) and delivers it to the CSU secure stream switch (SSS) interface

  • Write channel receives data from the CSU secure stream switch (SSS) interface and delivers it to the PS-side (memory).

  • 32-bit AXI 3.0 interface on the PS-side

  • Deep 128x32-bit data FIFOs for both the SRC and DST data paths

  • PS-side AXI Issuing capability up to a maximum of 9 commands per channel, with programmable maximum

  • Single thread (AXI-ID) operation for both read and write channels

  • CSU_DMA operates synchronously in the “csu_main_clk” or

...

  • PMC clock domain

  • Target CSU_DMA frequency of 400MHz max

  • DST DMA will only issue a write AXI command if the corresponding write data is available in the write data FIFO – Store and Forward.

  • SRC DMA

...

  • will only issue a read AXI command if there is enough space in the read data FIFO for the entire burst.

  • DMA start address is 32-bit aligned

  • DMA transfer length is in units of 4-byte words

  • DMA can accept only 1 command per channel

  • Timeout mechanisms for both SRC(read) and DST(write) channels

  • Automatic hardware management of 4kbyte boundary crossing on the PS-side (AXI )

  • Dedicated APB interface for CSU_DMA register access

  • Always generates secure (AxPROT[1]=0) AXI commands

  • DMA supports INCR and FIXED (keyhole) AXI burst-types

  • Zero-ization of FIFOs for

...

  • security purposes achieved via RAM MBIST

  • Byte endianness option available for the SRC DMA

  • Pseudo-CRC option available for the SRC DMA

...

Standalone Driver Supported Features

...

  • All Controller Features supported.

Test cases

...

  • payload

Known Issues and Limitations

  • None

Example Applications

CSUDMA driver supports a few basic polled and interrupt examples describing how its different features can be exercised. 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/csudma/examples/

Test Name

Example Source

Description

CSUDMA Selftest example

xcsudma_selftest_example.c

...

Basic CSUDMA selftest example to check sanity and use core APIs.

CSUDMA Polled example

xcsudma_polled_example.c

...

Polled mode example

...

demonstrating CSUDMA transfer via polling of busy state and local loopback.

CSUDMA Interrupt example

xcsudma_intr_example.c

...

Known issues and Limitations

  • None.

Change Log

2020.2

Summary:

  • Reorganize cache operations for 32 bit and 64 addressing, corresponding processors and combinations thereof. This change affects the data transfer function prototype.
  • Support for parallel makefile execution
  • Minor fixes for MisraC

...

Interrupt mode example demonstrating CSUDMA transfer via interrupts and local loopback.

Example Application Usage

CSUDMA Selftest example

Basic CSUDMA selftest example to check sanity and use core APIs.

Expected Output

Successfully ran CSU_DMA Selftest Example

CSUDMA Polled example

Polled mode example demonstrating CSUDMA transfer via polling of busy state and local loopback.

Expected Output

Successfully ran CSU_DMA Polled Example

CSUDMA Interrupt example

Interrupt mode example demonstrating CSUDMA transfer via interrupts and local loopback.

Expected Output

Successfully ran CSU_DMA Interrupt Example

Example Design Architecture

NA

Performance

NA

Change Log

2021.1

https://github.com/Xilinx/embeddedsw/blob/xlnx_rel_v2021.1/doc/ChangeLog#L420

2020.2

https://github.com/Xilinx/embeddedsw/

...

blob/

...

release-

...

2020.2/

...

doc/

...

ChangeLog#L444

2020.1

...

Summary:

Coverity warning fixes and PMC support

...

https://github.com/Xilinx/embeddedsw/

...

blob/

...

release-

...

2020.1/

...

doc/

...

ChangeLog#L26

2019.2

Summary:

Minor warning fixes

Commits:

https://github.com/Xilinx/embeddedsw/

...

blob/

...

release-

...

2019.2/

...

doc/

...

e744693 Csudma: Shifting value too far.
cd642dc Csudma: Value is not of appropriate type.
db78d82 Csudma: Use of mixed mode arithmetic.
8c7905e Csudma: No cast for widening complex int expression (MR).
504492a Csudma: Literal value requires a U suffix.
224dbe2 csudma: Change DstDone variable to use volatile keyword
36819a5 csudma: Fixes coverity warning.

2019.1

Summary:

Minor enhancements and warning fixes

...

ChangeLog#L32

2019.1

https://github.com/Xilinx/embeddedsw/

...

blob/

...

release-

...

2019.1/

...

doc/

...

ac01a5a csudma: Adds psu_pmu processor check
a0cb3a8 csudma: Fix driver version number
6d9a22d csudma: Add support for psv_pmcdma IP name
383a650 Csudma: Adds IAR compiler support
352843b csudma: examples: Fix IAR compiler warning for xcsudma_intr_example.

2018.3

Summary:

  • Minor enhancements on code quality
  • Added DMA timeout

Commits:

ChangeLog#L64

2018.3

https://github.com/Xilinx/embeddedsw/

...

blob/

...

release-

...

2018.3/

...

doc/ChangeLog#L412

2018.2

None

2018.1

...

  • Added Support for peripheral test app support
  • Added New API XCsuDma_64BitTransfer() in the driver which is useful

...

  • None

...

  • None

...

  • None

...

  • None

...

  • None

...

https://github.com/Xilinx/embeddedsw/blob/release-2018.1/doc/ChangeLog#L278

Related Links

...

...

...