forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
106 lines (62 loc) · 2.05 KB
/
Kconfig
File metadata and controls
106 lines (62 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# DMA configuration options
# Copyright (c) 2016 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
# DMA options
#
menuconfig DMA
bool "Direct Memory Access (DMA) drivers"
if DMA
config DMA_64BIT
bool "DMA 64 bit address support"
help
When this option is true, 64 bit source and dest
DMA addresses are supported.
config DMA_INIT_PRIORITY
int "DMA init priority"
default KERNEL_INIT_PRIORITY_DEFAULT
help
DMA driver device initialization priority.
module = DMA
module-str = dma
source "subsys/logging/Kconfig.template.log_config"
source "drivers/dma/Kconfig.stm32"
source "drivers/dma/Kconfig.sam_xdmac"
source "drivers/dma/Kconfig.dw"
source "drivers/dma/Kconfig.nios2_msgdma"
source "drivers/dma/Kconfig.sam0"
source "drivers/dma/Kconfig.mcux_edma"
source "drivers/dma/Kconfig.mcux_lpc"
source "drivers/dma/Kconfig.dma_pl330"
source "drivers/dma/Kconfig.iproc_pax"
source "drivers/dma/Kconfig.intel_adsp_gpdma"
source "drivers/dma/Kconfig.intel_adsp_hda"
source "drivers/dma/Kconfig.gd32"
source "drivers/dma/Kconfig.esp32"
source "drivers/dma/Kconfig.xec"
source "drivers/dma/Kconfig.xmc4xxx"
source "drivers/dma/Kconfig.rpi_pico"
source "drivers/dma/Kconfig.renesas_ra"
source "drivers/dma/Kconfig.renesas_rz"
source "drivers/dma/Kconfig.ifx_cat1"
source "drivers/dma/Kconfig.intel_lpss"
source "drivers/dma/Kconfig.mcux_pxp"
source "drivers/dma/Kconfig.max32"
source "drivers/dma/Kconfig.mcux_smartdma"
source "drivers/dma/Kconfig.andes_atcdmacx00"
source "drivers/dma/Kconfig.sedi"
source "drivers/dma/Kconfig.si32"
source "drivers/dma/Kconfig.silabs"
source "drivers/dma/Kconfig.siwx91x"
source "drivers/dma/Kconfig.smartbond"
source "drivers/dma/Kconfig.nxp_sof_host_dma"
source "drivers/dma/Kconfig.emul"
source "drivers/dma/Kconfig.nxp_edma"
source "drivers/dma/Kconfig.dw_axi_dmac"
source "drivers/dma/Kconfig.xilinx_axi_dma"
source "drivers/dma/Kconfig.nxp_sdma"
source "drivers/dma/Kconfig.wch"
source "drivers/dma/Kconfig.ti_cc23x0"
source "drivers/dma/Kconfig.npcx"
source "drivers/dma/Kconfig.ti_msp"
endif # DMA