zephyr/drivers/dma/Kconfig.nxp_sdma
Daniel Baluta e94c86f395 drivers: dma: Add initial support for NXP SDMA
This adds initial support for NXP SDMA controller. We make use
of NXP HAL to configure the IP.

SDMA uses BD (buffer descriptors) to describe a transfer. We create
a cyclic list of descriptors and trigger them manually at start and
later when data is available.

This is tested using Sound Open Firmware app on top of Zephyr.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
2024-12-23 17:11:09 +01:00

10 lines
192 B
Plaintext

# Copyright 2024 NXP
# SPDX-License-Identifier: Apache-2.0
config DMA_NXP_SDMA
bool "NXP SDMA driver"
default y
depends on DT_HAS_NXP_SDMA_ENABLED
help
Enable driver for NXP's SDMA IP.