1# Copyright (c) 2024 Silicon-labs 2# SPDX-License-Identifier: Apache-2.0 3 4config DMA_SILABS_LDMA 5 bool "Silabs DMA driver" 6 default y 7 select SYS_MEM_BLOCKS 8 select SOC_GECKO_LDMA 9 depends on DT_HAS_SILABS_LDMA_ENABLED 10 help 11 Driver for Silabs DMA. 12 13if DMA_SILABS_LDMA 14 15config DMA_MAX_DESCRIPTOR 16 int "Max Number of block_config (LDMA_Descriptor)" 17 default 8 18 help 19 Max Number of block_config (LDMA_Descriptor) 20 21endif 22