dma: ti: add driver to K3 UDMA
authorVignesh R <vigneshr@ti.com>
Tue, 5 Feb 2019 12:01:24 +0000 (17:31 +0530)
committerTom Rini <trini@konsulko.com>
Fri, 12 Apr 2019 00:07:12 +0000 (20:07 -0400)
commitffcc66e8fec52d9c8d909f21c627c80596582dca
treedbd8553dc7cd9c5140c11645fc09029948abeb16
parent17ef3c4c28a88d7953ed656888469b240980b9f3
dma: ti: add driver to K3 UDMA

The UDMA-P is intended to perform similar (but significantly upgraded) functions
as the packet-oriented DMA used on previous SoC devices. The UDMA-P module
supports the transmission and reception of various packet types.
The UDMA-P also supports acting as both a UTC and UDMA-C for its internal
channels. Channels in the UDMA-P can be configured to be either Packet-Based or
Third-Party channels on a channel by channel basis.

The initial driver supports:
- MEM_TO_MEM (TR mode)
- DEV_TO_MEM (Packet mode)
- MEM_TO_DEV (Packet mode)

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: Vignesh R <vigneshr@ti.com>
drivers/dma/Kconfig
drivers/dma/Makefile
drivers/dma/ti/Kconfig [new file with mode: 0644]
drivers/dma/ti/Makefile [new file with mode: 0644]
drivers/dma/ti/k3-udma-hwdef.h [new file with mode: 0644]
drivers/dma/ti/k3-udma.c [new file with mode: 0644]
include/dt-bindings/dma/k3-udma.h [new file with mode: 0644]
include/linux/soc/ti/ti-udma.h [new file with mode: 0644]