-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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 silabs LDMA
Initial support of silabs LDMA using hal library em_ldma. Signed-off-by: Martin Hoff <[email protected]>
- Loading branch information
1 parent
f23558d
commit 8448860
Showing
5 changed files
with
552 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,21 @@ | ||
# Copyright (c) 2024 Silicon-labs | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config DMA_SILABS_LDMA | ||
bool "Silabs DMA driver" | ||
default y | ||
select SYS_MEM_BLOCKS | ||
select SOC_GECKO_LDMA | ||
depends on DT_HAS_SILABS_LDMA_ENABLED | ||
help | ||
Driver for Silabs DMA. | ||
|
||
if DMA_SILABS_LDMA | ||
|
||
config DMA_MAX_DESCRIPTOR | ||
int "Max Number of block_config (LDMA_Descriptor)" | ||
default 8 | ||
help | ||
Max Number of block_config (LDMA_Descriptor) | ||
|
||
endif |
Oops, something went wrong.