2019-11-01 20:45:29 +08:00
|
|
|
# DMA configuration options
|
|
|
|
|
2016-06-15 04:16:13 +08:00
|
|
|
# Copyright (c) 2016 Intel Corporation
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-06-15 04:16:13 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# DMA options
|
|
|
|
#
|
|
|
|
menuconfig DMA
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "DMA driver Configuration"
|
2016-06-15 04:16:13 +08:00
|
|
|
|
|
|
|
if DMA
|
|
|
|
config DMA_0_NAME
|
2017-02-13 20:10:22 +08:00
|
|
|
string "Device name for DMA Controller 0"
|
2016-06-15 04:16:13 +08:00
|
|
|
default "DMA_0"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Device name for DMA Controller 0.
|
2016-06-15 04:16:13 +08:00
|
|
|
|
|
|
|
config DMA_0_IRQ_PRI
|
2017-02-13 20:10:22 +08:00
|
|
|
int "IRQ Priority for DMA Controller 0"
|
2016-06-15 04:16:13 +08:00
|
|
|
default 3
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
IRQ Priority for the DMA Controller.
|
2016-06-15 04:16:13 +08:00
|
|
|
|
2017-02-13 20:10:22 +08:00
|
|
|
config DMA_1_NAME
|
|
|
|
string "Device name for DMA Controller 1"
|
|
|
|
default "DMA_1"
|
2016-10-13 18:39:09 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Device name for DMA Controller 1.
|
2017-02-13 20:10:22 +08:00
|
|
|
|
|
|
|
config DMA_2_NAME
|
|
|
|
string "Device name for DMA Controller 2"
|
|
|
|
default "DMA_2"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Device name for DMA Controller 2.
|
2017-02-13 20:10:22 +08:00
|
|
|
|
2020-05-08 14:51:03 +08:00
|
|
|
config DMA_64BIT
|
|
|
|
bool "DMA 64 bit address support"
|
|
|
|
help
|
|
|
|
When this option is true, 64 bit source and dest
|
|
|
|
DMA addresses are supported.
|
|
|
|
|
2018-09-18 03:47:17 +08:00
|
|
|
module = DMA
|
|
|
|
module-str = dma
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2017-06-07 05:36:26 +08:00
|
|
|
|
2019-10-24 19:06:19 +08:00
|
|
|
source "drivers/dma/Kconfig.stm32"
|
2017-02-17 20:08:06 +08:00
|
|
|
|
2017-01-21 00:52:34 +08:00
|
|
|
source "drivers/dma/Kconfig.sam_xdmac"
|
|
|
|
|
2019-12-09 21:01:37 +08:00
|
|
|
source "drivers/dma/Kconfig.dw"
|
2018-01-04 14:23:51 +08:00
|
|
|
|
2018-05-03 21:54:21 +08:00
|
|
|
source "drivers/dma/Kconfig.nios2_msgdma"
|
|
|
|
|
2018-03-06 05:23:09 +08:00
|
|
|
source "drivers/dma/Kconfig.sam0"
|
|
|
|
|
2020-05-15 17:49:42 +08:00
|
|
|
source "drivers/dma/Kconfig.mcux_edma"
|
|
|
|
|
2020-05-03 11:57:19 +08:00
|
|
|
source "drivers/dma/Kconfig.dma_pl330"
|
|
|
|
|
2016-06-15 04:16:13 +08:00
|
|
|
endif # DMA
|