zephyr/drivers/dma/Kconfig.stm32f4x
Johann Fischer 92e24de7cd drivers: dma: restructure dma drivers Kconfig
Moves Kconfig options for each dma controllers into own Kconfig files.

Signed-off-by: Johann Fischer <j.fischer@phytec.de>
2017-08-09 16:04:46 -05:00

69 lines
1.8 KiB
Plaintext

# Kconfig - DMA configuration options
#
#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig DMA_STM32F4X
bool "Enable STM32F4x DMA driver"
default n
depends on SOC_SERIES_STM32F4X
help
DMA driver for STM32F4x series SoCs.
config DMA_0_RX_SUB_CHANNEL_ID
int "Requested RX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication from a peripheral/device. Not required
for memory to memory comms.
config DMA_0_TX_SUB_CHANNEL_ID
int "Requested TX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication to a peripheral/device. Not required
for memory to memory comms.
config DMA_1_RX_SUB_CHANNEL_ID
int "Requested RX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication from a peripheral/device. Not required
for memory to memory comms.
config DMA_1_TX_SUB_CHANNEL_ID
int "Requested TX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication to a peripheral/device. Not required
for memory to memory comms.
config DMA_2_RX_SUB_CHANNEL_ID
int "Requested RX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication from a peripheral/device. Not required
for memory to memory comms.
config DMA_2_TX_SUB_CHANNEL_ID
int "Requested TX sub-channel ID"
default 0
depends on DMA_STM32F4X
help
This configuration is required to choose a valid sub-channel
for communication to a peripheral/device. Not required
for memory to memory comms.