Re: [dpdk-dev] [PATCH v2 1/6] dma/dpaa: introduce DPAA DMA driver

2021-11-02 Thread Thomas Monjalon
02/11/2021 09:51, fengchengwen: > On 2021/11/1 16:51, Gagandeep Singh wrote: > > The DPAA DMA driver is an implementation of the dmadev APIs, > > that provide means to initiate a DMA transaction from CPU. > > The initiated DMA is performed without CPU being involved > > in the actual DMA transacti

Re: [dpdk-dev] [PATCH v2 1/6] dma/dpaa: introduce DPAA DMA driver

2021-11-02 Thread fengchengwen
On 2021/11/1 16:51, Gagandeep Singh wrote: > The DPAA DMA driver is an implementation of the dmadev APIs, > that provide means to initiate a DMA transaction from CPU. > The initiated DMA is performed without CPU being involved > in the actual DMA transaction. This is achieved via using > the QDMA

[dpdk-dev] [PATCH v2 1/6] dma/dpaa: introduce DPAA DMA driver

2021-11-01 Thread Gagandeep Singh
The DPAA DMA driver is an implementation of the dmadev APIs, that provide means to initiate a DMA transaction from CPU. The initiated DMA is performed without CPU being involved in the actual DMA transaction. This is achieved via using the QDMA controller of DPAA SoC. Signed-off-by: Gagandeep Sin