Skip to content

drivers: dma_mcux_edma: Simple Refactoring #92869

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Aug 15, 2025
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
6 changes: 6 additions & 0 deletions drivers/dma/Kconfig.mcux_edma
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ config DMA_MCUX_EDMA_V5
help
DMA version 5 driver for MCUX series SoCs.

config DMA_MCUX_MAX_DATA_SIZE
int
default 64 if DMA_MCUX_EDMA_V5 || DMA_MCUX_EDMA_V4 || DMA_MCUX_EDMA_V3
default 32

if DMA_MCUX_EDMA || DMA_MCUX_EDMA_V3 || DMA_MCUX_EDMA_V4 || DMA_MCUX_EDMA_V5

config DMA_TCD_QUEUE_SIZE
Expand All @@ -58,6 +63,7 @@ config DMA_MCUX_USE_DTCM_FOR_DMA_DESCRIPTORS
bool "Use DTCM for DMA descriptors"
default y
depends on DT_HAS_NXP_IMX_DTCM_ENABLED
depends on $(dt_chosen_enabled,zephyr_dtcm)
help
When this option is activated, the descriptors for DMA transfer are
located in the DTCM (Data Tightly Coupled Memory).
Expand Down
Loading