-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
Showing
5 changed files
with
468 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 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. |
Oops, something went wrong.