mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

Add support for AMD AE4DMA controller. It performs high-bandwidth memory to memory and IO copy operation. Device commands are managed via a circular queue of 'descriptors', each of which specifies source and destination addresses for copying a single buffer of data. Reviewed-by: Raju Rangoju <Raju.Rangoju@amd.com> Reviewed-by: Philipp Stanner <pstanner@redhat.com> Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com> Link: https://lore.kernel.org/r/20241025095931.726018-3-Basavaraj.Natikar@amd.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
11 lines
164 B
Makefile
11 lines
164 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# AMD AE4DMA driver
|
|
#
|
|
|
|
obj-$(CONFIG_AMD_AE4DMA) += ae4dma.o
|
|
|
|
ae4dma-objs := ae4dma-dev.o
|
|
|
|
ae4dma-$(CONFIG_PCI) += ae4dma-pci.o
|