1 .. SPDX-License-Identifier: BSD-3-Clause
7 The DPAA2 QDMA is an implementation of the rawdev API, that provide means
8 to initiate a DMA transaction from CPU. The initiated DMA is performed
9 without CPU being involved in the actual DMA transaction. This is achieved
10 via using the DPDMAI device exposed by MC.
12 More information can be found at `NXP Official Website
13 <http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-arm-processors:QORIQ-ARM>`_.
18 The DPAA2 QDMA implements following features in the rawdev API;
20 - Supports issuing DMA of data within memory without hogging CPU while
21 performing DMA operation.
22 - Supports configuring to optionally get status of the DMA translation on
23 per DMA operation basis.
36 See :doc:`../platform/dpaa2` for setup information
38 Currently supported by DPDK:
41 - MC Firmware version **10.18.0** and higher.
42 - Supported architectures: **arm64 LE**.
44 - Follow the DPDK :ref:`Getting Started Guide for Linux <linux_gsg>` to setup the basic DPDK environment.
48 Some part of fslmc bus code (mc flib - object library) routines are
49 dual licensed (BSD & GPLv2).
55 For enabling logs, use the following EAL parameter:
57 .. code-block:: console
59 ./your_qdma_application <EAL args> --log-level=pmd.raw.dpaa2.qdma,<level>
61 Using ``pmd.raw.dpaa2.qdma`` as log matching criteria, all Event PMD logs can be
62 enabled which are lower than logging ``level``.
68 The DPAA2 QDMA is exposed as a vdev device which consists of dpdmai devices.
69 On EAL initialization, dpdmai devices will be probed and populated into the
70 rawdevices. The rawdev ID of the device can be obtained using
72 * Invoking ``rte_rawdev_get_dev_id("dpdmai.x")`` from the application
73 where x is the object ID of the DPDMAI object created by MC. Use can
74 use this index for further rawdev function calls.
79 DPAA2 drivers for DPDK can only work on NXP SoCs as listed in the
80 ``Supported DPAA2 SoCs``.