mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 02:13:15 +00:00
There is no such thing as CAVS DMA IP block, the DMA IP block found on CAVS based chips is made with DesignWare one. This will help to centralize DW based DMA device into one driver. Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
13 lines
562 B
CMake
13 lines
562 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_SAM_XDMAC dma_sam_xdmac.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_STM32 dma_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_STM32_V1 dma_stm32_v1.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_STM32_V2 dma_stm32_v2.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_DW dma_dw.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_NIOS2_MSGDMA dma_nios2_msgdma.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DMA_SAM0 dma_sam0.c)
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE dma_handlers.c)
|