Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/dma/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ zephyr_library_sources_ifdef(CONFIG_DMA_RENESAS_RZ dma_renesas_rz.c)
zephyr_library_sources_ifdef(CONFIG_MCUX_PXP dma_mcux_pxp.c)
zephyr_library_sources_ifdef(CONFIG_DMA_MAX32 dma_max32.c)
zephyr_library_sources_ifdef(CONFIG_DMA_MCUX_SMARTDMA dma_mcux_smartdma.c)
zephyr_library_sources_ifdef(CONFIG_DMA_ANDES_ATCDMAC300 dma_andes_atcdmac300.c)
zephyr_library_sources_ifdef(CONFIG_DMA_ANDES_ATCDMACX00 dma_andes_atcdmacx00.c)
zephyr_library_sources_ifdef(CONFIG_DMA_INFINEON_CAT1 dma_ifx_cat1.c)
zephyr_library_sources_ifdef(CONFIG_DMA_SEDI dma_sedi.c)
zephyr_library_sources_ifdef(CONFIG_DMA_SI32 dma_si32.c)
Expand Down
2 changes: 1 addition & 1 deletion drivers/dma/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ source "drivers/dma/Kconfig.max32"

source "drivers/dma/Kconfig.mcux_smartdma"

source "drivers/dma/Kconfig.andes_atcdmac300"
source "drivers/dma/Kconfig.andes_atcdmacx00"

source "drivers/dma/Kconfig.sedi"

Expand Down
12 changes: 0 additions & 12 deletions drivers/dma/Kconfig.andes_atcdmac300

This file was deleted.

19 changes: 19 additions & 0 deletions drivers/dma/Kconfig.andes_atcdmacx00
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Andestech ATCDMACx00 serial configuration options
# Copyright (c) 2025 Andes Technology Corporation.

# SPDX-License-Identifier: Apache-2.0


config DMA_ANDES_ATCDMACX00
bool "Andes ATCDMACX00 DMA driver"
default y
depends on DT_HAS_ANDESTECH_ATCDMACX00_ENABLED
depends on !DCACHE || SOC_ANDES_V5_IOCP || NOCACHE_MEMORY
help
Andes ATCDMACX00 DMA driver.

if DMA_ANDES_ATCDMACX00
config DMA_64BIT
default y
depends on 64BIT
endif
Loading