mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 13:22:56 +00:00
This driver currently only handles memory-to-memory transfers. TODO: Add support for all types of transfers. Change-Id: Ic9787dcca919a58fb11b48c9f6b6b371db88c3ea Origin: Original Maintained-by: Zephyr Signed-off-by: Lee Jones <lee.jones@linaro.org>
44 lines
713 B
Plaintext
44 lines
713 B
Plaintext
# Kconfig - DMA configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#
|
|
# DMA options
|
|
#
|
|
menuconfig DMA
|
|
bool
|
|
prompt "DMA driver Configuration"
|
|
default n
|
|
|
|
if DMA
|
|
menuconfig DMA_QMSI
|
|
bool "Enable QMSI DMA driver"
|
|
default n
|
|
depends on QMSI
|
|
help
|
|
QMSI DMA driver.
|
|
|
|
config DMA_0_NAME
|
|
string "Device name for QMSI DMA Controller"
|
|
default "DMA_0"
|
|
help
|
|
Device name for the QMSI DMA Controller.
|
|
|
|
config DMA_0_IRQ_PRI
|
|
int "IRQ Priority for DMA"
|
|
default 3
|
|
help
|
|
IRQ Priority for the DMA Controller.
|
|
|
|
menuconfig DMA_STM32F4X
|
|
bool "Enable STM32F4x DMA driver"
|
|
default n
|
|
depends on SOC_SERIES_STM32F4X
|
|
help
|
|
DMA driver for STM32Fx series SoCs.
|
|
endif # DMA
|