zephyr/drivers/dma/Kconfig.esp32
Manuel Argüelles 77c2c454f7 drivers: dma: esp32: guard driver's kconfig options
Wrap the driver's options to prevent them from showing up in the global
Kconfig menu.

Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
2025-06-03 09:15:28 +02:00

20 lines
457 B
Plaintext

# Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
# SPDX-License-Identifier: Apache-2.0
config DMA_ESP32
bool "ESP32 General Purpose DMA driver"
depends on DT_HAS_ESPRESSIF_ESP32_GDMA_ENABLED
default y
help
General Purpose DMA for ESP32 series.
if DMA_ESP32
config DMA_ESP32_MAX_DESCRIPTOR_NUM
int "Maximal number of available DMA descriptors"
default 16
help
Reserves memory for a maximal number of descriptors
endif # DMA_ESP32