Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Chris Leech | c13c826 | 2006-05-23 17:18:44 -0700 | [diff] [blame] | 2 | # |
| 3 | # DMA engine configuration |
| 4 | # |
| 5 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 6 | menuconfig DMADEVICES |
Haavard Skinnemoen | 6d4f587 | 2007-11-28 16:21:43 -0800 | [diff] [blame] | 7 | bool "DMA Engine support" |
Dan Williams | 04ce9ab | 2009-06-03 14:22:28 -0700 | [diff] [blame] | 8 | depends on HAS_DMA |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 9 | help |
Haavard Skinnemoen | 6d4f587 | 2007-11-28 16:21:43 -0800 | [diff] [blame] | 10 | DMA engines can do asynchronous data transfers without |
| 11 | involving the host CPU. Currently, this framework can be |
| 12 | used to offload memory copies in the network stack and |
Dan Williams | 9c402f4 | 2008-06-27 01:21:11 -0700 | [diff] [blame] | 13 | RAID operations in the MD driver. This menu only presents |
| 14 | DMA Device drivers supported by the configured arch, it may |
| 15 | be empty in some cases. |
Chris Leech | c13c826 | 2006-05-23 17:18:44 -0700 | [diff] [blame] | 16 | |
Linus Walleij | 6c664a8 | 2010-02-09 22:34:54 +0100 | [diff] [blame] | 17 | config DMADEVICES_DEBUG |
Krzysztof Kozlowski | 67805a4b | 2019-11-21 04:19:08 +0100 | [diff] [blame] | 18 | bool "DMA Engine debugging" |
| 19 | depends on DMADEVICES != n |
| 20 | help |
| 21 | This is an option for use by developers; most people should |
| 22 | say N here. This enables DMA engine core and driver debugging. |
Linus Walleij | 6c664a8 | 2010-02-09 22:34:54 +0100 | [diff] [blame] | 23 | |
| 24 | config DMADEVICES_VDEBUG |
Krzysztof Kozlowski | 67805a4b | 2019-11-21 04:19:08 +0100 | [diff] [blame] | 25 | bool "DMA Engine verbose debugging" |
| 26 | depends on DMADEVICES_DEBUG != n |
| 27 | help |
| 28 | This is an option for use by developers; most people should |
| 29 | say N here. This enables deeper (more verbose) debugging of |
| 30 | the DMA engine core and drivers. |
Linus Walleij | 6c664a8 | 2010-02-09 22:34:54 +0100 | [diff] [blame] | 31 | |
| 32 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 33 | if DMADEVICES |
Chris Leech | db21733 | 2006-06-17 21:24:58 -0700 | [diff] [blame] | 34 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 35 | comment "DMA Devices" |
| 36 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 37 | #core |
Dan Williams | 5fc6d89 | 2010-10-07 16:44:50 -0700 | [diff] [blame] | 38 | config ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Dan Williams | 138f4c3 | 2009-09-08 17:42:51 -0700 | [diff] [blame] | 39 | bool |
| 40 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 41 | config ARCH_HAS_ASYNC_TX_FIND_CHANNEL |
| 42 | bool |
| 43 | |
| 44 | config DMA_ENGINE |
| 45 | bool |
| 46 | |
| 47 | config DMA_VIRTUAL_CHANNELS |
| 48 | tristate |
| 49 | |
| 50 | config DMA_ACPI |
| 51 | def_bool y |
| 52 | depends on ACPI |
| 53 | |
| 54 | config DMA_OF |
| 55 | def_bool y |
| 56 | depends on OF |
| 57 | select DMA_ENGINE |
| 58 | |
| 59 | #devices |
Stefan Roese | a85c6f1 | 2017-07-07 14:11:19 +0200 | [diff] [blame] | 60 | config ALTERA_MSGDMA |
| 61 | tristate "Altera / Intel mSGDMA Engine" |
Randy Dunlap | 253697b | 2021-05-21 19:13:10 -0700 | [diff] [blame] | 62 | depends on HAS_IOMEM |
Stefan Roese | a85c6f1 | 2017-07-07 14:11:19 +0200 | [diff] [blame] | 63 | select DMA_ENGINE |
| 64 | help |
| 65 | Enable support for Altera / Intel mSGDMA controller. |
| 66 | |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 67 | config AMBA_PL08X |
| 68 | bool "ARM PrimeCell PL080 or PL081 support" |
Kees Cook | c6a0aec | 2012-10-23 13:01:54 -0700 | [diff] [blame] | 69 | depends on ARM_AMBA |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 70 | select DMA_ENGINE |
Russell King | 083be28 | 2012-05-26 14:09:53 +0100 | [diff] [blame] | 71 | select DMA_VIRTUAL_CHANNELS |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 72 | help |
Linus Walleij | 1e1cfc7 | 2017-05-20 23:42:53 +0200 | [diff] [blame] | 73 | Say yes if your platform has a PL08x DMAC device which can |
| 74 | provide DMA engine support. This includes the original ARM |
| 75 | PL080 and PL081, Samsungs PL080 derivative and Faraday |
| 76 | Technology's FTDMAC020 PL080 derivative. |
Linus Walleij | e8689e6 | 2010-09-28 15:57:37 +0200 | [diff] [blame] | 77 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 78 | config AMCC_PPC440SPE_ADMA |
| 79 | tristate "AMCC PPC440SPe ADMA support" |
| 80 | depends on 440SPe || 440SP |
| 81 | select DMA_ENGINE |
| 82 | select DMA_ENGINE_RAID |
| 83 | select ARCH_HAS_ASYNC_TX_FIND_CHANNEL |
| 84 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Joachim Eastwood | e5f4ae8 | 2015-07-11 14:12:06 +0200 | [diff] [blame] | 85 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 86 | Enable support for the AMCC PPC440SPe RAID engines. |
| 87 | |
Martin Povišer | b127315 | 2022-05-31 23:36:14 +0200 | [diff] [blame] | 88 | config APPLE_ADMAC |
| 89 | tristate "Apple ADMAC support" |
| 90 | depends on ARCH_APPLE || COMPILE_TEST |
| 91 | select DMA_ENGINE |
| 92 | default ARCH_APPLE |
| 93 | help |
| 94 | Enable support for Audio DMA Controller found on Apple Silicon SoCs. |
| 95 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 96 | config AT_HDMAC |
| 97 | tristate "Atmel AHB DMA support" |
| 98 | depends on ARCH_AT91 |
| 99 | select DMA_ENGINE |
Tudor Ambarus | ac803b5 | 2022-10-25 12:03:06 +0300 | [diff] [blame] | 100 | select DMA_VIRTUAL_CHANNELS |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 101 | help |
| 102 | Support the Atmel AHB DMA controller. |
| 103 | |
| 104 | config AT_XDMAC |
| 105 | tristate "Atmel XDMA support" |
| 106 | depends on ARCH_AT91 |
| 107 | select DMA_ENGINE |
| 108 | help |
| 109 | Support the Atmel XDMA controller. |
| 110 | |
| 111 | config AXI_DMAC |
| 112 | tristate "Analog Devices AXI-DMAC DMA support" |
Krzysztof Kozlowski | 5c03887 | 2021-03-11 16:27:31 +0100 | [diff] [blame] | 113 | depends on MICROBLAZE || NIOS2 || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_INTEL_SOCFPGA || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 114 | select DMA_ENGINE |
| 115 | select DMA_VIRTUAL_CHANNELS |
Alexandru Ardelean | fc15be3 | 2019-06-06 13:45:50 +0300 | [diff] [blame] | 116 | select REGMAP_MMIO |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 117 | help |
| 118 | Enable support for the Analog Devices AXI-DMAC peripheral. This DMA |
Geert Uytterhoeven | 2fea290 | 2020-04-16 12:30:54 +0200 | [diff] [blame] | 119 | controller is often used in Analog Devices' reference designs for FPGA |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 120 | platforms. |
| 121 | |
Anup Patel | 743e1c8 | 2017-05-15 10:34:54 +0530 | [diff] [blame] | 122 | config BCM_SBA_RAID |
| 123 | tristate "Broadcom SBA RAID engine support" |
Arnd Bergmann | 58d9612 | 2017-05-18 15:25:25 +0200 | [diff] [blame] | 124 | depends on ARM64 || COMPILE_TEST |
| 125 | depends on MAILBOX && RAID6_PQ |
Anup Patel | 743e1c8 | 2017-05-15 10:34:54 +0530 | [diff] [blame] | 126 | select DMA_ENGINE |
| 127 | select DMA_ENGINE_RAID |
| 128 | select ASYNC_TX_DISABLE_XOR_VAL_DMA |
| 129 | select ASYNC_TX_DISABLE_PQ_VAL_DMA |
Anup Patel | 7076a1e | 2017-10-03 10:53:00 +0530 | [diff] [blame] | 130 | default m if ARCH_BCM_IPROC |
Anup Patel | 743e1c8 | 2017-05-15 10:34:54 +0530 | [diff] [blame] | 131 | help |
| 132 | Enable support for Broadcom SBA RAID Engine. The SBA RAID |
| 133 | engine is available on most of the Broadcom iProc SoCs. It |
| 134 | has the capability to offload memcpy, xor and pq computation |
| 135 | for raid5/6. |
| 136 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 137 | config DMA_BCM2835 |
| 138 | tristate "BCM2835 DMA engine support" |
| 139 | depends on ARCH_BCM2835 |
| 140 | select DMA_ENGINE |
| 141 | select DMA_VIRTUAL_CHANNELS |
| 142 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 143 | config DMA_JZ4780 |
| 144 | tristate "JZ4780 DMA support" |
Paul Cercueil | c558ecd | 2018-08-29 23:32:48 +0200 | [diff] [blame] | 145 | depends on MIPS || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 146 | select DMA_ENGINE |
| 147 | select DMA_VIRTUAL_CHANNELS |
| 148 | help |
| 149 | This selects support for the DMA controller in Ingenic JZ4780 SoCs. |
| 150 | If you have a board based on such a SoC and wish to use DMA for |
| 151 | devices which can use the DMA controller, say Y or M here. |
| 152 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 153 | config DMA_SA11X0 |
| 154 | tristate "SA-11x0 DMA support" |
Vinod Koul | 6947c3f | 2016-09-02 15:31:42 +0530 | [diff] [blame] | 155 | depends on ARCH_SA1100 || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 156 | select DMA_ENGINE |
| 157 | select DMA_VIRTUAL_CHANNELS |
| 158 | help |
| 159 | Support the DMA engine found on Intel StrongARM SA-1100 and |
| 160 | SA-1110 SoCs. This DMA engine can only be used with on-chip |
| 161 | devices. |
| 162 | |
| 163 | config DMA_SUN4I |
| 164 | tristate "Allwinner A10 DMA SoCs support" |
Linus Torvalds | 3527122 | 2015-09-04 11:10:18 -0700 | [diff] [blame] | 165 | depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 166 | default (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I) |
| 167 | select DMA_ENGINE |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 168 | select DMA_VIRTUAL_CHANNELS |
| 169 | help |
| 170 | Enable support for the DMA controller present in the sun4i, |
| 171 | sun5i and sun7i Allwinner ARM SoCs. |
| 172 | |
| 173 | config DMA_SUN6I |
| 174 | tristate "Allwinner A31 SoCs DMA support" |
Samuel Holland | 8292a15 | 2022-04-24 12:27:58 -0500 | [diff] [blame] | 175 | depends on ARCH_SUNXI || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 176 | depends on RESET_CONTROLLER |
| 177 | select DMA_ENGINE |
| 178 | select DMA_VIRTUAL_CHANNELS |
| 179 | help |
| 180 | Support for the DMA engine first found in Allwinner A31 SoCs. |
| 181 | |
Eugeniy Paltsev | 1fe20f1 | 2018-03-06 14:46:14 +0300 | [diff] [blame] | 182 | config DW_AXI_DMAC |
| 183 | tristate "Synopsys DesignWare AXI DMA support" |
Jean Delvare | 84dd3b2 | 2022-08-03 22:34:48 +0200 | [diff] [blame] | 184 | depends on OF |
Sia Jee Heng | cd0f00c | 2021-01-25 09:32:50 +0800 | [diff] [blame] | 185 | depends on HAS_IOMEM |
Eugeniy Paltsev | 1fe20f1 | 2018-03-06 14:46:14 +0300 | [diff] [blame] | 186 | select DMA_ENGINE |
| 187 | select DMA_VIRTUAL_CHANNELS |
| 188 | help |
| 189 | Enable support for Synopsys DesignWare AXI DMA controller. |
| 190 | NOTE: This driver wasn't tested on 64 bit platform because |
| 191 | of lack 64 bit platform with Synopsys DW AXI DMAC. |
| 192 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 193 | config EP93XX_DMA |
| 194 | bool "Cirrus Logic EP93xx DMA support" |
Vinod Koul | 49ad6d7d | 2016-09-02 15:38:43 +0530 | [diff] [blame] | 195 | depends on ARCH_EP93XX || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 196 | select DMA_ENGINE |
| 197 | help |
| 198 | Enable support for the Cirrus Logic EP93xx M2P/M2M DMA controller. |
| 199 | |
| 200 | config FSL_DMA |
| 201 | tristate "Freescale Elo series DMA support" |
| 202 | depends on FSL_SOC |
| 203 | select DMA_ENGINE |
| 204 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 205 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 206 | Enable support for the Freescale Elo series DMA controllers. |
| 207 | The Elo is the DMA controller on some mpc82xx and mpc83xx parts, the |
| 208 | EloPlus is on mpc85xx and mpc86xx and Pxxx parts, and the Elo3 is on |
| 209 | some Txxx and Bxxx parts. |
| 210 | |
| 211 | config FSL_EDMA |
| 212 | tristate "Freescale eDMA engine support" |
| 213 | depends on OF |
| 214 | select DMA_ENGINE |
| 215 | select DMA_VIRTUAL_CHANNELS |
| 216 | help |
| 217 | Support the Freescale eDMA engine with programmable channel |
| 218 | multiplexing capability for DMA request sources(slot). |
| 219 | This module can be found on Freescale Vybrid and LS-1 SoCs. |
| 220 | |
Peng Ma | b092529 | 2018-10-30 10:36:00 +0800 | [diff] [blame] | 221 | config FSL_QDMA |
Krzysztof Kozlowski | 67805a4b | 2019-11-21 04:19:08 +0100 | [diff] [blame] | 222 | tristate "NXP Layerscape qDMA engine support" |
| 223 | depends on ARM || ARM64 |
| 224 | select DMA_ENGINE |
| 225 | select DMA_VIRTUAL_CHANNELS |
| 226 | select DMA_ENGINE_RAID |
| 227 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
| 228 | help |
| 229 | Support the NXP Layerscape qDMA engine with command queue and legacy mode. |
| 230 | Channel virtualization is supported through enqueuing of DMA jobs to, |
| 231 | or dequeuing DMA jobs from, different work queues. |
| 232 | This module can be found on NXP Layerscape SoCs. |
Peng Ma | b092529 | 2018-10-30 10:36:00 +0800 | [diff] [blame] | 233 | The qdma driver only work on SoCs with a DPAA hardware block. |
| 234 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 235 | config FSL_RAID |
Krzysztof Kozlowski | 67805a4b | 2019-11-21 04:19:08 +0100 | [diff] [blame] | 236 | tristate "Freescale RAID engine Support" |
| 237 | depends on FSL_SOC && !ASYNC_TX_ENABLE_CHANNEL_SWITCH |
| 238 | select DMA_ENGINE |
| 239 | select DMA_ENGINE_RAID |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 240 | help |
Krzysztof Kozlowski | 67805a4b | 2019-11-21 04:19:08 +0100 | [diff] [blame] | 241 | Enable support for Freescale RAID Engine. RAID Engine is |
| 242 | available on some QorIQ SoCs (like P5020/P5040). It has |
| 243 | the capability to offload memcpy, xor and pq computation |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 244 | for raid5/6. |
| 245 | |
Zhou Wang | e9f08b6 | 2020-01-16 14:10:57 +0800 | [diff] [blame] | 246 | config HISI_DMA |
| 247 | tristate "HiSilicon DMA Engine support" |
YueHaibing | ae148b4 | 2020-03-28 19:41:33 +0800 | [diff] [blame] | 248 | depends on ARM64 || COMPILE_TEST |
| 249 | depends on PCI_MSI |
Zhou Wang | e9f08b6 | 2020-01-16 14:10:57 +0800 | [diff] [blame] | 250 | select DMA_ENGINE |
| 251 | select DMA_VIRTUAL_CHANNELS |
| 252 | help |
| 253 | Support HiSilicon Kunpeng DMA engine. |
| 254 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 255 | config IMG_MDC_DMA |
| 256 | tristate "IMG MDC support" |
| 257 | depends on MIPS || COMPILE_TEST |
| 258 | depends on MFD_SYSCON |
| 259 | select DMA_ENGINE |
| 260 | select DMA_VIRTUAL_CHANNELS |
| 261 | help |
| 262 | Enable support for the IMG multi-threaded DMA controller (MDC). |
| 263 | |
| 264 | config IMX_DMA |
| 265 | tristate "i.MX DMA support" |
| 266 | depends on ARCH_MXC |
| 267 | select DMA_ENGINE |
| 268 | help |
| 269 | Support the i.MX DMA engine. This engine is integrated into |
| 270 | Freescale i.MX1/21/27 chips. |
| 271 | |
| 272 | config IMX_SDMA |
| 273 | tristate "i.MX SDMA support" |
| 274 | depends on ARCH_MXC |
| 275 | select DMA_ENGINE |
Robin Gong | 57b772b | 2018-06-20 00:57:00 +0800 | [diff] [blame] | 276 | select DMA_VIRTUAL_CHANNELS |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 277 | help |
| 278 | Support the i.MX SDMA engine. This engine is integrated into |
| 279 | Freescale i.MX25/31/35/51/53/6 chips. |
Joachim Eastwood | e5f4ae8 | 2015-07-11 14:12:06 +0200 | [diff] [blame] | 280 | |
Vinod Koul | 9ab8b4e | 2015-09-21 22:18:45 +0530 | [diff] [blame] | 281 | config INTEL_IDMA64 |
Linus Torvalds | 3527122 | 2015-09-04 11:10:18 -0700 | [diff] [blame] | 282 | tristate "Intel integrated DMA 64-bit support" |
| 283 | select DMA_ENGINE |
| 284 | select DMA_VIRTUAL_CHANNELS |
| 285 | help |
| 286 | Enable DMA support for Intel Low Power Subsystem such as found on |
| 287 | Intel Skylake PCH. |
| 288 | |
Dave Jiang | d9e5481 | 2021-07-15 11:44:41 -0700 | [diff] [blame] | 289 | config INTEL_IDXD_BUS |
| 290 | tristate |
| 291 | default INTEL_IDXD |
| 292 | |
Dave Jiang | bfe1d56 | 2020-01-21 16:43:59 -0700 | [diff] [blame] | 293 | config INTEL_IDXD |
| 294 | tristate "Intel Data Accelerators support" |
Johannes Berg | b2296eea | 2021-06-25 10:38:10 +0200 | [diff] [blame] | 295 | depends on PCI && X86_64 && !UML |
Randy Dunlap | d6a7bb8 | 2020-07-13 23:35:39 -0700 | [diff] [blame] | 296 | depends on PCI_MSI |
Dave Jiang | d807132 | 2021-08-19 09:34:06 -0700 | [diff] [blame] | 297 | depends on PCI_PASID |
Dave Jiang | 0705107 | 2020-06-15 13:54:26 -0700 | [diff] [blame] | 298 | depends on SBITMAP |
Dave Jiang | bfe1d56 | 2020-01-21 16:43:59 -0700 | [diff] [blame] | 299 | select DMA_ENGINE |
Dave Jiang | bfe1d56 | 2020-01-21 16:43:59 -0700 | [diff] [blame] | 300 | help |
| 301 | Enable support for the Intel(R) data accelerators present |
| 302 | in Intel Xeon CPU. |
| 303 | |
| 304 | Say Y if you have such a platform. |
| 305 | |
| 306 | If unsure, say N. |
| 307 | |
Dave Jiang | 6e7f3ee9 | 2021-07-15 11:44:47 -0700 | [diff] [blame] | 308 | config INTEL_IDXD_COMPAT |
| 309 | bool "Legacy behavior for idxd driver" |
| 310 | depends on PCI && X86_64 |
| 311 | select INTEL_IDXD_BUS |
| 312 | help |
| 313 | Compatible driver to support old /sys/bus/dsa/drivers/dsa behavior. |
| 314 | The old behavior performed driver bind/unbind for device and wq |
| 315 | devices all under the dsa driver. The compat driver will emulate |
| 316 | the legacy behavior in order to allow existing support apps (i.e. |
| 317 | accel-config) to continue function. It is expected that accel-config |
| 318 | v3.2 and earlier will need the compat mode. A distro with later |
| 319 | accel-config version can disable this compat config. |
| 320 | |
| 321 | Say Y if you have old applications that require such behavior. |
| 322 | |
| 323 | If unsure, say N. |
| 324 | |
Dave Jiang | 8e50d39 | 2020-10-27 10:34:35 -0700 | [diff] [blame] | 325 | # Config symbol that collects all the dependencies that's necessary to |
| 326 | # support shared virtual memory for the devices supported by idxd. |
| 327 | config INTEL_IDXD_SVM |
| 328 | bool "Accelerator Shared Virtual Memory Support" |
| 329 | depends on INTEL_IDXD |
| 330 | depends on INTEL_IOMMU_SVM |
| 331 | depends on PCI_PRI |
| 332 | depends on PCI_PASID |
| 333 | depends on PCI_IOV |
| 334 | |
Tom Zanussi | 81dd4d4 | 2021-04-24 10:04:15 -0500 | [diff] [blame] | 335 | config INTEL_IDXD_PERFMON |
| 336 | bool "Intel Data Accelerators performance monitor support" |
| 337 | depends on INTEL_IDXD |
| 338 | help |
| 339 | Enable performance monitor (pmu) support for the Intel(R) |
| 340 | data accelerators present in Intel Xeon CPU. With this |
| 341 | enabled, perf can be used to monitor the DSA (Intel Data |
| 342 | Streaming Accelerator) events described in the Intel DSA |
| 343 | spec. |
| 344 | |
| 345 | If unsure, say N. |
| 346 | |
Chris Leech | 0bbd5f4 | 2006-05-23 17:35:34 -0700 | [diff] [blame] | 347 | config INTEL_IOATDMA |
| 348 | tristate "Intel I/OAT DMA support" |
Johannes Berg | bbac7a9 | 2021-08-09 11:24:09 +0200 | [diff] [blame] | 349 | depends on PCI && X86_64 && !UML |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 350 | select DMA_ENGINE |
Dan Williams | 3cc377b | 2013-12-09 10:33:16 -0800 | [diff] [blame] | 351 | select DMA_ENGINE_RAID |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 352 | select DCA |
| 353 | help |
| 354 | Enable support for the Intel(R) I/OAT DMA engine present |
| 355 | in recent Intel Xeon chipsets. |
| 356 | |
| 357 | Say Y here if you have such a chipset. |
| 358 | |
| 359 | If unsure, say N. |
Dan Williams | c211092 | 2007-01-02 13:52:26 -0700 | [diff] [blame] | 360 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 361 | config K3_DMA |
| 362 | tristate "Hisilicon K3 DMA support" |
John Stultz | e39a232 | 2016-08-29 10:30:53 -0700 | [diff] [blame] | 363 | depends on ARCH_HI3xxx || ARCH_HISI || COMPILE_TEST |
Andy Shevchenko | 667dfed | 2015-07-27 18:04:02 +0300 | [diff] [blame] | 364 | select DMA_ENGINE |
| 365 | select DMA_VIRTUAL_CHANNELS |
| 366 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 367 | Support the DMA engine for Hisilicon K3 platform |
| 368 | devices. |
Andy Shevchenko | 667dfed | 2015-07-27 18:04:02 +0300 | [diff] [blame] | 369 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 370 | config LPC18XX_DMAMUX |
| 371 | bool "NXP LPC18xx/43xx DMA MUX for PL080" |
| 372 | depends on ARCH_LPC18XX || COMPILE_TEST |
| 373 | depends on OF && AMBA_PL08X |
| 374 | select MFD_SYSCON |
| 375 | help |
| 376 | Enable support for DMA on NXP LPC18xx/43xx platforms |
| 377 | with PL080 and multiplexed DMA request lines. |
Hein Tibosch | d5ea7b5 | 2012-10-25 13:38:05 -0700 | [diff] [blame] | 378 | |
Angelo Dureghello | e7a3ff9 | 2018-08-19 19:27:16 +0200 | [diff] [blame] | 379 | config MCF_EDMA |
| 380 | tristate "Freescale eDMA engine support, ColdFire mcf5441x SoCs" |
| 381 | depends on M5441x || COMPILE_TEST |
| 382 | select DMA_ENGINE |
| 383 | select DMA_VIRTUAL_CHANNELS |
| 384 | help |
| 385 | Support the Freescale ColdFire eDMA engine, 64-channel |
| 386 | implementation that performs complex data transfers with |
| 387 | minimal intervention from a host processor. |
| 388 | This module can be found on Freescale ColdFire mcf5441x SoCs. |
| 389 | |
Jassi Brar | 6c3214e | 2019-10-14 22:33:59 -0500 | [diff] [blame] | 390 | config MILBEAUT_HDMAC |
| 391 | tristate "Milbeaut AHB DMA support" |
| 392 | depends on ARCH_MILBEAUT || COMPILE_TEST |
| 393 | depends on OF |
| 394 | select DMA_ENGINE |
| 395 | select DMA_VIRTUAL_CHANNELS |
| 396 | help |
| 397 | Say yes here to support the Socionext Milbeaut |
| 398 | HDMAC device. |
| 399 | |
Jassi Brar | a6e9be0 | 2019-10-14 22:32:19 -0500 | [diff] [blame] | 400 | config MILBEAUT_XDMAC |
| 401 | tristate "Milbeaut AXI DMA support" |
| 402 | depends on ARCH_MILBEAUT || COMPILE_TEST |
| 403 | depends on OF |
| 404 | select DMA_ENGINE |
| 405 | select DMA_VIRTUAL_CHANNELS |
| 406 | help |
| 407 | Say yes here to support the Socionext Milbeaut |
| 408 | XDMAC device. |
| 409 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 410 | config MMP_PDMA |
Lubomir Rintel | 793dff4 | 2021-01-21 12:03:55 +0100 | [diff] [blame] | 411 | tristate "MMP PDMA support" |
Vinod Koul | cd3a792 | 2016-09-02 15:55:56 +0530 | [diff] [blame] | 412 | depends on ARCH_MMP || ARCH_PXA || COMPILE_TEST |
Nicolas Ferre | dc78baa | 2009-07-03 19:24:33 +0200 | [diff] [blame] | 413 | select DMA_ENGINE |
| 414 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 415 | Support the MMP PDMA engine for PXA and MMP platform. |
Nicolas Ferre | dc78baa | 2009-07-03 19:24:33 +0200 | [diff] [blame] | 416 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 417 | config MMP_TDMA |
Lubomir Rintel | 9f3c14d | 2021-01-21 12:03:56 +0100 | [diff] [blame] | 418 | tristate "MMP Two-Channel DMA support" |
Vinod Koul | 93d05f1 | 2016-09-02 15:57:09 +0530 | [diff] [blame] | 419 | depends on ARCH_MMP || COMPILE_TEST |
Ludovic Desroches | e1f7c9e | 2014-10-22 17:22:18 +0200 | [diff] [blame] | 420 | select DMA_ENGINE |
Jérémy Lefaure | d661976 | 2016-10-06 17:59:53 -0400 | [diff] [blame] | 421 | select GENERIC_ALLOCATOR |
Ludovic Desroches | e1f7c9e | 2014-10-22 17:22:18 +0200 | [diff] [blame] | 422 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 423 | Support the MMP Two-Channel DMA engine. |
| 424 | This engine used for MMP Audio DMA and pxa910 SQU. |
Ludovic Desroches | e1f7c9e | 2014-10-22 17:22:18 +0200 | [diff] [blame] | 425 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 426 | config MOXART_DMA |
| 427 | tristate "MOXART DMA support" |
| 428 | depends on ARCH_MOXART |
Zhang Wei | 173acc7 | 2008-03-01 07:42:48 -0700 | [diff] [blame] | 429 | select DMA_ENGINE |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 430 | select DMA_VIRTUAL_CHANNELS |
| 431 | help |
| 432 | Enable support for the MOXA ART SoC DMA controller. |
| 433 | |
| 434 | Say Y here if you enabled MMP ADMA, otherwise say N. |
Andy Shevchenko | 2b49e0c | 2015-02-23 16:24:42 +0200 | [diff] [blame] | 435 | |
Piotr Ziecik | 0fb6f73 | 2010-02-05 03:42:52 +0000 | [diff] [blame] | 436 | config MPC512X_DMA |
| 437 | tristate "Freescale MPC512x built-in DMA engine support" |
Ilya Yanok | ba2eea2 | 2010-10-27 01:52:57 +0200 | [diff] [blame] | 438 | depends on PPC_MPC512x || PPC_MPC831x |
Piotr Ziecik | 0fb6f73 | 2010-02-05 03:42:52 +0000 | [diff] [blame] | 439 | select DMA_ENGINE |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 440 | help |
Piotr Ziecik | 0fb6f73 | 2010-02-05 03:42:52 +0000 | [diff] [blame] | 441 | Enable support for the Freescale MPC512x built-in DMA engine. |
| 442 | |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 443 | config MV_XOR |
| 444 | bool "Marvell XOR engine support" |
Gregory CLEMENT | c39290a | 2016-04-29 09:49:08 +0200 | [diff] [blame] | 445 | depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 446 | select DMA_ENGINE |
Dan Williams | 3cc377b | 2013-12-09 10:33:16 -0800 | [diff] [blame] | 447 | select DMA_ENGINE_RAID |
Dan Williams | 5fc6d89 | 2010-10-07 16:44:50 -0700 | [diff] [blame] | 448 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 449 | help |
Saeed Bishara | ff7b047 | 2008-07-08 11:58:36 -0700 | [diff] [blame] | 450 | Enable support for the Marvell XOR engine. |
| 451 | |
Thomas Petazzoni | 19a340b | 2016-06-16 14:28:34 +0200 | [diff] [blame] | 452 | config MV_XOR_V2 |
| 453 | bool "Marvell XOR engine version 2 support " |
| 454 | depends on ARM64 |
| 455 | select DMA_ENGINE |
| 456 | select DMA_ENGINE_RAID |
| 457 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Thomas Gleixner | 13e7acc | 2022-11-11 14:54:40 +0100 | [diff] [blame] | 458 | select GENERIC_MSI_IRQ |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 459 | help |
Thomas Petazzoni | 19a340b | 2016-06-16 14:28:34 +0200 | [diff] [blame] | 460 | Enable support for the Marvell version 2 XOR engine. |
| 461 | |
| 462 | This engine provides acceleration for copy, XOR and RAID6 |
| 463 | operations, and is available on Marvell Armada 7K and 8K |
| 464 | platforms. |
| 465 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 466 | config MXS_DMA |
| 467 | bool "MXS DMA support" |
Fabio Estevam | d762e4f3 | 2017-06-08 19:46:23 -0300 | [diff] [blame] | 468 | depends on ARCH_MXS || ARCH_MXC || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 469 | select STMP_DEVICE |
| 470 | select DMA_ENGINE |
| 471 | help |
| 472 | Support the MXS DMA engine. This engine including APBH-DMA |
Fabio Estevam | 2446563 | 2017-06-16 11:58:46 -0300 | [diff] [blame] | 473 | and APBX-DMA is integrated into some Freescale chips. |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 474 | |
Guennadi Liakhovetski | 5296b56 | 2009-01-19 15:36:21 -0700 | [diff] [blame] | 475 | config MX3_IPU |
| 476 | bool "MX3x Image Processing Unit support" |
Sascha Hauer | 8e2d41f | 2011-08-24 08:41:09 +0200 | [diff] [blame] | 477 | depends on ARCH_MXC |
Guennadi Liakhovetski | 5296b56 | 2009-01-19 15:36:21 -0700 | [diff] [blame] | 478 | select DMA_ENGINE |
| 479 | default y |
| 480 | help |
| 481 | If you plan to use the Image Processing unit in the i.MX3x, say |
| 482 | Y here. If unsure, select Y. |
| 483 | |
| 484 | config MX3_IPU_IRQS |
| 485 | int "Number of dynamically mapped interrupts for IPU" |
| 486 | depends on MX3_IPU |
| 487 | range 2 137 |
| 488 | default 4 |
| 489 | help |
| 490 | Out of 137 interrupt sources on i.MX31 IPU only very few are used. |
| 491 | To avoid bloating the irq_desc[] array we allocate a sufficient |
| 492 | number of IRQ slots and map them dynamically to specific sources. |
| 493 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 494 | config NBPFAXI_DMA |
| 495 | tristate "Renesas Type-AXI NBPF DMA support" |
| 496 | select DMA_ENGINE |
| 497 | depends on ARM || COMPILE_TEST |
| 498 | help |
| 499 | Support for "Type-AXI" NBPF DMA IPs from Renesas |
| 500 | |
Manivannan Sadhasivam | 47e2057 | 2018-07-26 10:36:57 +0530 | [diff] [blame] | 501 | config OWL_DMA |
| 502 | tristate "Actions Semi Owl SoCs DMA support" |
| 503 | depends on ARCH_ACTIONS |
| 504 | select DMA_ENGINE |
| 505 | select DMA_VIRTUAL_CHANNELS |
| 506 | help |
| 507 | Enable support for the Actions Semi Owl SoCs DMA controller. |
| 508 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 509 | config PCH_DMA |
| 510 | tristate "Intel EG20T PCH / LAPIS Semicon IOH(ML7213/ML7223/ML7831) DMA" |
| 511 | depends on PCI && (X86_32 || COMPILE_TEST) |
| 512 | select DMA_ENGINE |
| 513 | help |
| 514 | Enable support for Intel EG20T PCH DMA engine. |
| 515 | |
| 516 | This driver also can be used for LAPIS Semiconductor IOH(Input/ |
| 517 | Output Hub), ML7213, ML7223 and ML7831. |
| 518 | ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is |
| 519 | for MP(Media Phone) use and ML7831 IOH is for general purpose use. |
| 520 | ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series. |
| 521 | ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH. |
| 522 | |
| 523 | config PL330_DMA |
| 524 | tristate "DMA API Driver for PL330" |
| 525 | select DMA_ENGINE |
| 526 | depends on ARM_AMBA |
| 527 | help |
| 528 | Select if your platform has one or more PL330 DMACs. |
| 529 | You need to provide platform specific settings via |
| 530 | platform_data for a dma-pl330 device. |
| 531 | |
Robert Jarzmik | a57e16c | 2015-05-25 23:29:20 +0200 | [diff] [blame] | 532 | config PXA_DMA |
| 533 | bool "PXA DMA support" |
| 534 | depends on (ARCH_MMP || ARCH_PXA) |
| 535 | select DMA_ENGINE |
| 536 | select DMA_VIRTUAL_CHANNELS |
| 537 | help |
| 538 | Support the DMA engine for PXA. It is also compatible with MMP PDMA |
| 539 | platform. The internal DMA IP of all PXA variants is supported, with |
| 540 | 16 to 32 channels for peripheral to memory or memory to memory |
| 541 | transfers. |
| 542 | |
Logan Gunthorpe | 905ca51 | 2020-01-03 14:20:19 -0700 | [diff] [blame] | 543 | config PLX_DMA |
| 544 | tristate "PLX ExpressLane PEX Switch DMA Engine Support" |
| 545 | depends on PCI |
| 546 | select DMA_ENGINE |
| 547 | help |
| 548 | Some PLX ExpressLane PCI Switches support additional DMA engines. |
| 549 | These are exposed via extra functions on the switch's |
| 550 | upstream port. Each function exposes one DMA channel. |
| 551 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 552 | config STE_DMA40 |
| 553 | bool "ST-Ericsson DMA40 support" |
| 554 | depends on ARCH_U8500 |
| 555 | select DMA_ENGINE |
| 556 | help |
| 557 | Support for ST-Ericsson DMA40 controller |
| 558 | |
Peter Griffin | 6b4cd72 | 2016-10-18 10:39:11 +0100 | [diff] [blame] | 559 | config ST_FDMA |
| 560 | tristate "ST FDMA dmaengine support" |
| 561 | depends on ARCH_STI |
Vinod Koul | 3d6b371 | 2016-11-17 15:23:01 +0530 | [diff] [blame] | 562 | depends on REMOTEPROC |
Peter Griffin | 6b4cd72 | 2016-10-18 10:39:11 +0100 | [diff] [blame] | 563 | select ST_SLIM_REMOTEPROC |
| 564 | select DMA_ENGINE |
| 565 | select DMA_VIRTUAL_CHANNELS |
| 566 | help |
| 567 | Enable support for ST FDMA controller. |
| 568 | It supports 16 independent DMA channels, accepts up to 32 DMA requests |
| 569 | |
| 570 | Say Y here if you have such a chipset. |
| 571 | If unsure, say N. |
| 572 | |
M'boumba Cedric Madianga | d8b4683 | 2015-10-16 15:59:14 +0200 | [diff] [blame] | 573 | config STM32_DMA |
| 574 | bool "STMicroelectronics STM32 DMA support" |
Vinod Koul | 4fbf371 | 2016-09-02 15:57:51 +0530 | [diff] [blame] | 575 | depends on ARCH_STM32 || COMPILE_TEST |
M'boumba Cedric Madianga | d8b4683 | 2015-10-16 15:59:14 +0200 | [diff] [blame] | 576 | select DMA_ENGINE |
M'boumba Cedric Madianga | d8b4683 | 2015-10-16 15:59:14 +0200 | [diff] [blame] | 577 | select DMA_VIRTUAL_CHANNELS |
| 578 | help |
| 579 | Enable support for the on-chip DMA controller on STMicroelectronics |
| 580 | STM32 MCUs. |
M'boumba Cedric Madianga | ddf9bd4 | 2016-12-13 14:40:44 +0100 | [diff] [blame] | 581 | If you have a board based on such a MCU and wish to use DMA say Y |
M'boumba Cedric Madianga | d8b4683 | 2015-10-16 15:59:14 +0200 | [diff] [blame] | 582 | here. |
| 583 | |
Pierre-Yves MORDRET | df7e762 | 2017-09-22 09:31:30 +0200 | [diff] [blame] | 584 | config STM32_DMAMUX |
| 585 | bool "STMicroelectronics STM32 dma multiplexer support" |
| 586 | depends on STM32_DMA || COMPILE_TEST |
| 587 | help |
| 588 | Enable support for the on-chip DMA multiplexer on STMicroelectronics |
| 589 | STM32 MCUs. |
| 590 | If you have a board based on such a MCU and wish to use DMAMUX say Y |
| 591 | here. |
| 592 | |
Pierre-Yves MORDRET | a4ffb13 | 2017-09-28 17:36:41 +0200 | [diff] [blame] | 593 | config STM32_MDMA |
| 594 | bool "STMicroelectronics STM32 master dma support" |
| 595 | depends on ARCH_STM32 || COMPILE_TEST |
Arnd Bergmann | ea62e2c | 2017-10-11 16:00:04 +0200 | [diff] [blame] | 596 | depends on OF |
Pierre-Yves MORDRET | a4ffb13 | 2017-09-28 17:36:41 +0200 | [diff] [blame] | 597 | select DMA_ENGINE |
Pierre-Yves MORDRET | a4ffb13 | 2017-09-28 17:36:41 +0200 | [diff] [blame] | 598 | select DMA_VIRTUAL_CHANNELS |
| 599 | help |
| 600 | Enable support for the on-chip MDMA controller on STMicroelectronics |
| 601 | STM32 platforms. |
| 602 | If you have a board based on STM32 SoC and wish to use the master DMA |
| 603 | say Y here. |
| 604 | |
Baolin Wang | 9b3b817 | 2017-10-24 13:47:50 +0800 | [diff] [blame] | 605 | config SPRD_DMA |
| 606 | tristate "Spreadtrum DMA support" |
| 607 | depends on ARCH_SPRD || COMPILE_TEST |
| 608 | select DMA_ENGINE |
| 609 | select DMA_VIRTUAL_CHANNELS |
| 610 | help |
| 611 | Enable support for the on-chip DMA controller on Spreadtrum platform. |
| 612 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 613 | config S3C24XX_DMAC |
Arnd Bergmann | 9bdca82 | 2015-11-18 22:31:11 +0100 | [diff] [blame] | 614 | bool "Samsung S3C24XX DMA support" |
Vinod Koul | 1609db6 | 2016-09-02 16:00:41 +0530 | [diff] [blame] | 615 | depends on ARCH_S3C24XX || COMPILE_TEST |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 616 | select DMA_ENGINE |
| 617 | select DMA_VIRTUAL_CHANNELS |
| 618 | help |
| 619 | Support for the Samsung S3C24XX DMA controller driver. The |
| 620 | DMA controller is having multiple DMA channels which can be |
| 621 | configured for different peripherals like audio, UART, SPI. |
| 622 | The DMA controller can transfer data from memory to peripheral, |
| 623 | periphal to memory, periphal to periphal and memory to memory. |
| 624 | |
Atsushi Nemoto | ea76f0b | 2009-04-23 00:40:30 +0900 | [diff] [blame] | 625 | config TXX9_DMAC |
| 626 | tristate "Toshiba TXx9 SoC DMA support" |
Thomas Bogendoerfer | 455481f | 2022-02-22 10:04:28 +0100 | [diff] [blame] | 627 | depends on MACH_TX49XX |
Atsushi Nemoto | ea76f0b | 2009-04-23 00:40:30 +0900 | [diff] [blame] | 628 | select DMA_ENGINE |
| 629 | help |
| 630 | Support the TXx9 SoC internal DMA controller. This can be |
| 631 | integrated in chips such as the Toshiba TX4927/38/39. |
| 632 | |
Akhil R | ee17028 | 2022-02-25 18:50:44 +0530 | [diff] [blame] | 633 | config TEGRA186_GPC_DMA |
| 634 | tristate "NVIDIA Tegra GPC DMA support" |
| 635 | depends on (ARCH_TEGRA || COMPILE_TEST) && ARCH_DMA_ADDR_T_64BIT |
YueHaibing | 2cdd3ca | 2022-05-05 17:32:36 +0800 | [diff] [blame] | 636 | depends on IOMMU_API |
Akhil R | ee17028 | 2022-02-25 18:50:44 +0530 | [diff] [blame] | 637 | select DMA_ENGINE |
| 638 | help |
| 639 | Support for the NVIDIA Tegra General Purpose Central DMA controller. |
| 640 | The DMA controller has multiple DMA channels which can be configured |
| 641 | for different peripherals like UART, SPI, etc which are on APB bus. |
| 642 | This DMA controller transfers data from memory to peripheral FIFO |
| 643 | or vice versa. It also supports memory to memory data transfer. |
| 644 | |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 645 | config TEGRA20_APB_DMA |
Dmitry Osipenko | 703b70f | 2020-02-09 19:33:52 +0300 | [diff] [blame] | 646 | tristate "NVIDIA Tegra20 APB DMA support" |
Dmitry Osipenko | 6c41ac9 | 2020-02-09 19:33:54 +0300 | [diff] [blame] | 647 | depends on ARCH_TEGRA || COMPILE_TEST |
Laxman Dewangan | ec8a158 | 2012-06-06 10:55:27 +0530 | [diff] [blame] | 648 | select DMA_ENGINE |
| 649 | help |
| 650 | Support for the NVIDIA Tegra20 APB DMA controller driver. The |
| 651 | DMA controller is having multiple DMA channel which can be |
| 652 | configured for different peripherals like audio, UART, SPI, |
| 653 | I2C etc which is in APB bus. |
| 654 | This DMA controller transfers data from memory to peripheral fifo |
| 655 | or vice versa. It does not support memory to memory data transfer. |
| 656 | |
Jon Hunter | f46b195 | 2016-05-12 18:02:23 +0100 | [diff] [blame] | 657 | config TEGRA210_ADMA |
Paul Gortmaker | 3ed1679 | 2016-10-22 18:25:10 -0400 | [diff] [blame] | 658 | tristate "NVIDIA Tegra210 ADMA support" |
Sameer Pujar | 3145d73 | 2019-06-20 21:24:19 +0530 | [diff] [blame] | 659 | depends on (ARCH_TEGRA_210_SOC || COMPILE_TEST) |
Jon Hunter | f46b195 | 2016-05-12 18:02:23 +0100 | [diff] [blame] | 660 | select DMA_ENGINE |
| 661 | select DMA_VIRTUAL_CHANNELS |
Jon Hunter | f46b195 | 2016-05-12 18:02:23 +0100 | [diff] [blame] | 662 | help |
| 663 | Support for the NVIDIA Tegra210 ADMA controller driver. The |
| 664 | DMA controller has multiple DMA channels and is used to service |
| 665 | various audio clients in the Tegra210 audio processing engine |
| 666 | (APE). This DMA controller transfers data from memory to |
| 667 | peripheral and vice versa. It does not support memory to |
| 668 | memory data transfer. |
| 669 | |
Richard Röjfors | de5d445 | 2010-03-25 19:44:21 +0100 | [diff] [blame] | 670 | config TIMB_DMA |
| 671 | tristate "Timberdale FPGA DMA support" |
Vinod Koul | 4aa258a | 2016-09-02 16:07:05 +0530 | [diff] [blame] | 672 | depends on MFD_TIMBERDALE || COMPILE_TEST |
Richard Röjfors | de5d445 | 2010-03-25 19:44:21 +0100 | [diff] [blame] | 673 | select DMA_ENGINE |
| 674 | help |
| 675 | Enable support for the Timberdale FPGA DMA engine. |
| 676 | |
Masahiro Yamada | 32e74aa | 2018-10-12 01:41:03 +0900 | [diff] [blame] | 677 | config UNIPHIER_MDMAC |
| 678 | tristate "UniPhier MIO DMAC" |
| 679 | depends on ARCH_UNIPHIER || COMPILE_TEST |
| 680 | depends on OF |
| 681 | select DMA_ENGINE |
| 682 | select DMA_VIRTUAL_CHANNELS |
| 683 | help |
| 684 | Enable support for the MIO DMAC (Media I/O DMA controller) on the |
| 685 | UniPhier platform. This DMA controller is used as the external |
| 686 | DMA engine of the SD/eMMC controllers of the LD4, Pro4, sLD8 SoCs. |
| 687 | |
Kunihiko Hayashi | 667b925 | 2020-02-21 16:52:30 +0900 | [diff] [blame] | 688 | config UNIPHIER_XDMAC |
| 689 | tristate "UniPhier XDMAC support" |
| 690 | depends on ARCH_UNIPHIER || COMPILE_TEST |
| 691 | depends on OF |
| 692 | select DMA_ENGINE |
| 693 | select DMA_VIRTUAL_CHANNELS |
| 694 | help |
| 695 | Enable support for the XDMAC (external DMA controller) on the |
| 696 | UniPhier platform. This DMA controller can transfer data from |
| 697 | memory to memory, memory to peripheral and peripheral to memory. |
| 698 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 699 | config XGENE_DMA |
| 700 | tristate "APM X-Gene DMA support" |
| 701 | depends on ARCH_XGENE || COMPILE_TEST |
Jassi Brar | b3040e4 | 2010-05-23 20:28:19 -0700 | [diff] [blame] | 702 | select DMA_ENGINE |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 703 | select DMA_ENGINE_RAID |
| 704 | select ASYNC_TX_ENABLE_CHANNEL_SWITCH |
Jassi Brar | b3040e4 | 2010-05-23 20:28:19 -0700 | [diff] [blame] | 705 | help |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 706 | Enable support for the APM X-Gene SoC DMA engine. |
Jonas Jensen | 5f9e685 | 2014-01-17 09:46:05 +0100 | [diff] [blame] | 707 | |
Kedareswara rao Appana | fde57a7 | 2016-06-24 10:51:25 +0530 | [diff] [blame] | 708 | config XILINX_DMA |
| 709 | tristate "Xilinx AXI DMAS Engine" |
Kedareswara rao Appana | b72db40 | 2016-04-06 10:38:08 +0530 | [diff] [blame] | 710 | depends on (ARCH_ZYNQ || MICROBLAZE || ARM64) |
Srikanth Thokala | 9cd4360 | 2014-04-23 20:23:26 +0530 | [diff] [blame] | 711 | select DMA_ENGINE |
| 712 | help |
| 713 | Enable support for Xilinx AXI VDMA Soft IP. |
| 714 | |
Kedareswara rao Appana | fde57a7 | 2016-06-24 10:51:25 +0530 | [diff] [blame] | 715 | AXI VDMA engine provides high-bandwidth direct memory access |
Srikanth Thokala | 9cd4360 | 2014-04-23 20:23:26 +0530 | [diff] [blame] | 716 | between memory and AXI4-Stream video type target |
| 717 | peripherals including peripherals which support AXI4- |
| 718 | Stream Video Protocol. It has two stream interfaces/ |
| 719 | channels, Memory Mapped to Stream (MM2S) and Stream to |
| 720 | Memory Mapped (S2MM) for the data transfers. |
Kedareswara rao Appana | fde57a7 | 2016-06-24 10:51:25 +0530 | [diff] [blame] | 721 | AXI CDMA engine provides high-bandwidth direct memory access |
| 722 | between a memory-mapped source address and a memory-mapped |
| 723 | destination address. |
| 724 | AXI DMA engine provides high-bandwidth one dimensional direct |
| 725 | memory access between memory and AXI4-Stream target peripherals. |
Radhey Shyam Pandey | 6ccd692 | 2019-10-22 22:30:22 +0530 | [diff] [blame] | 726 | AXI MCDMA engine provides high-bandwidth direct memory access |
| 727 | between memory and AXI4-Stream target peripherals. It provides |
| 728 | the scatter gather interface with multiple channels independent |
| 729 | configuration support. |
Srikanth Thokala | 9cd4360 | 2014-04-23 20:23:26 +0530 | [diff] [blame] | 730 | |
Kedareswara rao Appana | b0cc417 | 2016-07-01 17:07:06 +0530 | [diff] [blame] | 731 | config XILINX_ZYNQMP_DMA |
| 732 | tristate "Xilinx ZynqMP DMA Engine" |
Michael Tretter | 7073b5a | 2021-08-26 11:47:38 +0200 | [diff] [blame] | 733 | depends on ARCH_ZYNQ || MICROBLAZE || ARM64 || COMPILE_TEST |
Kedareswara rao Appana | b0cc417 | 2016-07-01 17:07:06 +0530 | [diff] [blame] | 734 | select DMA_ENGINE |
| 735 | help |
| 736 | Enable support for Xilinx ZynqMP DMA controller. |
Vinod Koul | 5fa422c | 2013-02-12 09:15:02 -0800 | [diff] [blame] | 737 | |
Hyun Kwon | 7cbb0c6 | 2020-07-17 04:33:35 +0300 | [diff] [blame] | 738 | config XILINX_ZYNQMP_DPDMA |
| 739 | tristate "Xilinx DPDMA Engine" |
Laurent Pinchart | 32828b8 | 2021-05-20 18:24:17 +0300 | [diff] [blame] | 740 | depends on HAS_IOMEM && OF |
Hyun Kwon | 7cbb0c6 | 2020-07-17 04:33:35 +0300 | [diff] [blame] | 741 | select DMA_ENGINE |
| 742 | select DMA_VIRTUAL_CHANNELS |
| 743 | help |
| 744 | Enable support for Xilinx ZynqMP DisplayPort DMA. Choose this option |
| 745 | if you have a Xilinx ZynqMP SoC with a DisplayPort subsystem. The |
| 746 | driver provides the dmaengine required by the DisplayPort subsystem |
| 747 | display driver. |
| 748 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 749 | # driver files |
| 750 | source "drivers/dma/bestcomm/Kconfig" |
Andrew Bresticker | 5689ba7 | 2014-12-11 14:59:17 -0800 | [diff] [blame] | 751 | |
Sean Wang | 548c459 | 2018-03-15 15:40:36 +0800 | [diff] [blame] | 752 | source "drivers/dma/mediatek/Kconfig" |
| 753 | |
Sanjay R Mehta | fa5d823 | 2021-08-17 08:55:57 -0500 | [diff] [blame] | 754 | source "drivers/dma/ptdma/Kconfig" |
| 755 | |
Sinan Kaya | d9b31ef | 2016-02-04 23:34:32 -0500 | [diff] [blame] | 756 | source "drivers/dma/qcom/Kconfig" |
| 757 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 758 | source "drivers/dma/dw/Kconfig" |
Rameshwar Prasad Sahu | 9f2fd0d | 2015-03-18 19:17:34 +0530 | [diff] [blame] | 759 | |
Gustavo Pimentel | e63d79d | 2019-06-04 15:29:22 +0200 | [diff] [blame] | 760 | source "drivers/dma/dw-edma/Kconfig" |
| 761 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 762 | source "drivers/dma/hsu/Kconfig" |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 763 | |
Green Wan | 6973886 | 2019-11-07 16:49:21 +0800 | [diff] [blame] | 764 | source "drivers/dma/sf-pdma/Kconfig" |
| 765 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 766 | source "drivers/dma/sh/Kconfig" |
Russell King | 50437bf | 2012-04-13 12:07:23 +0100 | [diff] [blame] | 767 | |
Peter Ujfalusi | d88b139 | 2018-04-25 11:45:03 +0300 | [diff] [blame] | 768 | source "drivers/dma/ti/Kconfig" |
| 769 | |
Peng Ma | 7fdf9b0 | 2019-09-30 02:04:40 +0000 | [diff] [blame] | 770 | source "drivers/dma/fsl-dpaa2-qdma/Kconfig" |
| 771 | |
Amireddy Mallikarjuna reddy | 32d31c7 | 2020-12-03 12:10:44 +0800 | [diff] [blame] | 772 | source "drivers/dma/lgm/Kconfig" |
| 773 | |
Vinod Koul | 3c21619 | 2015-08-24 13:43:14 +0530 | [diff] [blame] | 774 | # clients |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 775 | comment "DMA Clients" |
| 776 | depends on DMA_ENGINE |
| 777 | |
Dan Williams | 729b5d1 | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 778 | config ASYNC_TX_DMA |
| 779 | bool "Async_tx: Offload support for the async_tx api" |
Dan Williams | 9a8de63 | 2009-09-08 15:06:10 -0700 | [diff] [blame] | 780 | depends on DMA_ENGINE |
Dan Williams | 729b5d1 | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 781 | help |
| 782 | This allows the async_tx api to take advantage of offload engines for |
| 783 | memcpy, memset, xor, and raid6 p+q operations. If your platform has |
| 784 | a dma engine that can perform raid operations and you have enabled |
| 785 | MD_RAID456 say Y. |
| 786 | |
| 787 | If unsure, say N. |
| 788 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 789 | config DMATEST |
| 790 | tristate "DMA Test client" |
| 791 | depends on DMA_ENGINE |
Stefan Roese | 58532e6 | 2017-04-27 14:21:40 +0200 | [diff] [blame] | 792 | select DMA_ENGINE_RAID |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 793 | help |
| 794 | Simple DMA test client. Say N unless you're debugging a |
| 795 | DMA Device driver. |
| 796 | |
Dan Williams | 3cc377b | 2013-12-09 10:33:16 -0800 | [diff] [blame] | 797 | config DMA_ENGINE_RAID |
| 798 | bool |
| 799 | |
Shannon Nelson | 2ed6dc3 | 2007-10-16 01:27:42 -0700 | [diff] [blame] | 800 | endif |