Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  1. #
  2. # DMA engine configuration
  3. #
  4. menuconfig DMADEVICES
  5. bool "DMA Engine support"
  6. depends on HAS_DMA
  7. help
  8. DMA engines can do asynchronous data transfers without
  9. involving the host CPU. Currently, this framework can be
  10. used to offload memory copies in the network stack and
  11. RAID operations in the MD driver. This menu only presents
  12. DMA Device drivers supported by the configured arch, it may
  13. be empty in some cases.
  14. config DMADEVICES_DEBUG
  15. bool "DMA Engine debugging"
  16. depends on DMADEVICES != n
  17. help
  18. This is an option for use by developers; most people should
  19. say N here. This enables DMA engine core and driver debugging.
  20. config DMADEVICES_VDEBUG
  21. bool "DMA Engine verbose debugging"
  22. depends on DMADEVICES_DEBUG != n
  23. help
  24. This is an option for use by developers; most people should
  25. say N here. This enables deeper (more verbose) debugging of
  26. the DMA engine core and drivers.
  27. if DMADEVICES
  28. comment "DMA Devices"
  29. #core
  30. config ASYNC_TX_ENABLE_CHANNEL_SWITCH
  31. bool
  32. config ARCH_HAS_ASYNC_TX_FIND_CHANNEL
  33. bool
  34. config DMA_ENGINE
  35. bool
  36. config DMA_VIRTUAL_CHANNELS
  37. tristate
  38. config DMA_ACPI
  39. def_bool y
  40. depends on ACPI
  41. config DMA_OF
  42. def_bool y
  43. depends on OF
  44. select DMA_ENGINE
  45. #devices
  46. config ALTERA_MSGDMA
  47. tristate "Altera / Intel mSGDMA Engine"
  48. select DMA_ENGINE
  49. help
  50. Enable support for Altera / Intel mSGDMA controller.
  51. config AMBA_PL08X
  52. bool "ARM PrimeCell PL080 or PL081 support"
  53. depends on ARM_AMBA
  54. select DMA_ENGINE
  55. select DMA_VIRTUAL_CHANNELS
  56. help
  57. Say yes if your platform has a PL08x DMAC device which can
  58. provide DMA engine support. This includes the original ARM
  59. PL080 and PL081, Samsungs PL080 derivative and Faraday
  60. Technology's FTDMAC020 PL080 derivative.
  61. config AMCC_PPC440SPE_ADMA
  62. tristate "AMCC PPC440SPe ADMA support"
  63. depends on 440SPe || 440SP
  64. select DMA_ENGINE
  65. select DMA_ENGINE_RAID
  66. select ARCH_HAS_ASYNC_TX_FIND_CHANNEL
  67. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  68. help
  69. Enable support for the AMCC PPC440SPe RAID engines.
  70. config AT_HDMAC
  71. tristate "Atmel AHB DMA support"
  72. depends on ARCH_AT91
  73. select DMA_ENGINE
  74. help
  75. Support the Atmel AHB DMA controller.
  76. config AT_XDMAC
  77. tristate "Atmel XDMA support"
  78. depends on ARCH_AT91
  79. select DMA_ENGINE
  80. help
  81. Support the Atmel XDMA controller.
  82. config AXI_DMAC
  83. tristate "Analog Devices AXI-DMAC DMA support"
  84. depends on MICROBLAZE || NIOS2 || ARCH_ZYNQ || ARCH_SOCFPGA || COMPILE_TEST
  85. select DMA_ENGINE
  86. select DMA_VIRTUAL_CHANNELS
  87. help
  88. Enable support for the Analog Devices AXI-DMAC peripheral. This DMA
  89. controller is often used in Analog Device's reference designs for FPGA
  90. platforms.
  91. config BCM_SBA_RAID
  92. tristate "Broadcom SBA RAID engine support"
  93. depends on ARM64 || COMPILE_TEST
  94. depends on MAILBOX && RAID6_PQ
  95. select DMA_ENGINE
  96. select DMA_ENGINE_RAID
  97. select ASYNC_TX_DISABLE_XOR_VAL_DMA
  98. select ASYNC_TX_DISABLE_PQ_VAL_DMA
  99. default m if ARCH_BCM_IPROC
  100. help
  101. Enable support for Broadcom SBA RAID Engine. The SBA RAID
  102. engine is available on most of the Broadcom iProc SoCs. It
  103. has the capability to offload memcpy, xor and pq computation
  104. for raid5/6.
  105. config COH901318
  106. bool "ST-Ericsson COH901318 DMA support"
  107. select DMA_ENGINE
  108. depends on ARCH_U300 || COMPILE_TEST
  109. help
  110. Enable support for ST-Ericsson COH 901 318 DMA.
  111. config DMA_BCM2835
  112. tristate "BCM2835 DMA engine support"
  113. depends on ARCH_BCM2835
  114. select DMA_ENGINE
  115. select DMA_VIRTUAL_CHANNELS
  116. config DMA_JZ4740
  117. tristate "JZ4740 DMA support"
  118. depends on MACH_JZ4740 || COMPILE_TEST
  119. select DMA_ENGINE
  120. select DMA_VIRTUAL_CHANNELS
  121. config DMA_JZ4780
  122. tristate "JZ4780 DMA support"
  123. depends on MIPS || COMPILE_TEST
  124. select DMA_ENGINE
  125. select DMA_VIRTUAL_CHANNELS
  126. help
  127. This selects support for the DMA controller in Ingenic JZ4780 SoCs.
  128. If you have a board based on such a SoC and wish to use DMA for
  129. devices which can use the DMA controller, say Y or M here.
  130. config DMA_SA11X0
  131. tristate "SA-11x0 DMA support"
  132. depends on ARCH_SA1100 || COMPILE_TEST
  133. select DMA_ENGINE
  134. select DMA_VIRTUAL_CHANNELS
  135. help
  136. Support the DMA engine found on Intel StrongARM SA-1100 and
  137. SA-1110 SoCs. This DMA engine can only be used with on-chip
  138. devices.
  139. config DMA_SUN4I
  140. tristate "Allwinner A10 DMA SoCs support"
  141. depends on MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
  142. default (MACH_SUN4I || MACH_SUN5I || MACH_SUN7I)
  143. select DMA_ENGINE
  144. select DMA_VIRTUAL_CHANNELS
  145. help
  146. Enable support for the DMA controller present in the sun4i,
  147. sun5i and sun7i Allwinner ARM SoCs.
  148. config DMA_SUN6I
  149. tristate "Allwinner A31 SoCs DMA support"
  150. depends on MACH_SUN6I || MACH_SUN8I || (ARM64 && ARCH_SUNXI) || COMPILE_TEST
  151. depends on RESET_CONTROLLER
  152. select DMA_ENGINE
  153. select DMA_VIRTUAL_CHANNELS
  154. help
  155. Support for the DMA engine first found in Allwinner A31 SoCs.
  156. config DW_AXI_DMAC
  157. tristate "Synopsys DesignWare AXI DMA support"
  158. depends on OF || COMPILE_TEST
  159. select DMA_ENGINE
  160. select DMA_VIRTUAL_CHANNELS
  161. help
  162. Enable support for Synopsys DesignWare AXI DMA controller.
  163. NOTE: This driver wasn't tested on 64 bit platform because
  164. of lack 64 bit platform with Synopsys DW AXI DMAC.
  165. config EP93XX_DMA
  166. bool "Cirrus Logic EP93xx DMA support"
  167. depends on ARCH_EP93XX || COMPILE_TEST
  168. select DMA_ENGINE
  169. help
  170. Enable support for the Cirrus Logic EP93xx M2P/M2M DMA controller.
  171. config FSL_DMA
  172. tristate "Freescale Elo series DMA support"
  173. depends on FSL_SOC
  174. select DMA_ENGINE
  175. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  176. ---help---
  177. Enable support for the Freescale Elo series DMA controllers.
  178. The Elo is the DMA controller on some mpc82xx and mpc83xx parts, the
  179. EloPlus is on mpc85xx and mpc86xx and Pxxx parts, and the Elo3 is on
  180. some Txxx and Bxxx parts.
  181. config FSL_EDMA
  182. tristate "Freescale eDMA engine support"
  183. depends on OF
  184. select DMA_ENGINE
  185. select DMA_VIRTUAL_CHANNELS
  186. help
  187. Support the Freescale eDMA engine with programmable channel
  188. multiplexing capability for DMA request sources(slot).
  189. This module can be found on Freescale Vybrid and LS-1 SoCs.
  190. config FSL_RAID
  191. tristate "Freescale RAID engine Support"
  192. depends on FSL_SOC && !ASYNC_TX_ENABLE_CHANNEL_SWITCH
  193. select DMA_ENGINE
  194. select DMA_ENGINE_RAID
  195. ---help---
  196. Enable support for Freescale RAID Engine. RAID Engine is
  197. available on some QorIQ SoCs (like P5020/P5040). It has
  198. the capability to offload memcpy, xor and pq computation
  199. for raid5/6.
  200. config IMG_MDC_DMA
  201. tristate "IMG MDC support"
  202. depends on MIPS || COMPILE_TEST
  203. depends on MFD_SYSCON
  204. select DMA_ENGINE
  205. select DMA_VIRTUAL_CHANNELS
  206. help
  207. Enable support for the IMG multi-threaded DMA controller (MDC).
  208. config IMX_DMA
  209. tristate "i.MX DMA support"
  210. depends on ARCH_MXC
  211. select DMA_ENGINE
  212. help
  213. Support the i.MX DMA engine. This engine is integrated into
  214. Freescale i.MX1/21/27 chips.
  215. config IMX_SDMA
  216. tristate "i.MX SDMA support"
  217. depends on ARCH_MXC
  218. select DMA_ENGINE
  219. select DMA_VIRTUAL_CHANNELS
  220. help
  221. Support the i.MX SDMA engine. This engine is integrated into
  222. Freescale i.MX25/31/35/51/53/6 chips.
  223. config INTEL_IDMA64
  224. tristate "Intel integrated DMA 64-bit support"
  225. select DMA_ENGINE
  226. select DMA_VIRTUAL_CHANNELS
  227. help
  228. Enable DMA support for Intel Low Power Subsystem such as found on
  229. Intel Skylake PCH.
  230. config INTEL_IOATDMA
  231. tristate "Intel I/OAT DMA support"
  232. depends on PCI && X86_64
  233. select DMA_ENGINE
  234. select DMA_ENGINE_RAID
  235. select DCA
  236. help
  237. Enable support for the Intel(R) I/OAT DMA engine present
  238. in recent Intel Xeon chipsets.
  239. Say Y here if you have such a chipset.
  240. If unsure, say N.
  241. config INTEL_IOP_ADMA
  242. tristate "Intel IOP ADMA support"
  243. depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX
  244. select DMA_ENGINE
  245. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  246. help
  247. Enable support for the Intel(R) IOP Series RAID engines.
  248. config INTEL_MIC_X100_DMA
  249. tristate "Intel MIC X100 DMA Driver"
  250. depends on 64BIT && X86 && INTEL_MIC_BUS
  251. select DMA_ENGINE
  252. help
  253. This enables DMA support for the Intel Many Integrated Core
  254. (MIC) family of PCIe form factor coprocessor X100 devices that
  255. run a 64 bit Linux OS. This driver will be used by both MIC
  256. host and card drivers.
  257. If you are building host kernel with a MIC device or a card
  258. kernel for a MIC device, then say M (recommended) or Y, else
  259. say N. If unsure say N.
  260. More information about the Intel MIC family as well as the Linux
  261. OS and tools for MIC to use with this driver are available from
  262. <http://software.intel.com/en-us/mic-developer>.
  263. config K3_DMA
  264. tristate "Hisilicon K3 DMA support"
  265. depends on ARCH_HI3xxx || ARCH_HISI || COMPILE_TEST
  266. select DMA_ENGINE
  267. select DMA_VIRTUAL_CHANNELS
  268. help
  269. Support the DMA engine for Hisilicon K3 platform
  270. devices.
  271. config LPC18XX_DMAMUX
  272. bool "NXP LPC18xx/43xx DMA MUX for PL080"
  273. depends on ARCH_LPC18XX || COMPILE_TEST
  274. depends on OF && AMBA_PL08X
  275. select MFD_SYSCON
  276. help
  277. Enable support for DMA on NXP LPC18xx/43xx platforms
  278. with PL080 and multiplexed DMA request lines.
  279. config MMP_PDMA
  280. bool "MMP PDMA support"
  281. depends on ARCH_MMP || ARCH_PXA || COMPILE_TEST
  282. select DMA_ENGINE
  283. help
  284. Support the MMP PDMA engine for PXA and MMP platform.
  285. config MMP_TDMA
  286. bool "MMP Two-Channel DMA support"
  287. depends on ARCH_MMP || COMPILE_TEST
  288. select DMA_ENGINE
  289. select MMP_SRAM if ARCH_MMP
  290. select GENERIC_ALLOCATOR
  291. help
  292. Support the MMP Two-Channel DMA engine.
  293. This engine used for MMP Audio DMA and pxa910 SQU.
  294. It needs sram driver under mach-mmp.
  295. config MOXART_DMA
  296. tristate "MOXART DMA support"
  297. depends on ARCH_MOXART
  298. select DMA_ENGINE
  299. select DMA_VIRTUAL_CHANNELS
  300. help
  301. Enable support for the MOXA ART SoC DMA controller.
  302. Say Y here if you enabled MMP ADMA, otherwise say N.
  303. config MPC512X_DMA
  304. tristate "Freescale MPC512x built-in DMA engine support"
  305. depends on PPC_MPC512x || PPC_MPC831x
  306. select DMA_ENGINE
  307. ---help---
  308. Enable support for the Freescale MPC512x built-in DMA engine.
  309. config MV_XOR
  310. bool "Marvell XOR engine support"
  311. depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST
  312. select DMA_ENGINE
  313. select DMA_ENGINE_RAID
  314. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  315. ---help---
  316. Enable support for the Marvell XOR engine.
  317. config MV_XOR_V2
  318. bool "Marvell XOR engine version 2 support "
  319. depends on ARM64
  320. select DMA_ENGINE
  321. select DMA_ENGINE_RAID
  322. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  323. select GENERIC_MSI_IRQ_DOMAIN
  324. ---help---
  325. Enable support for the Marvell version 2 XOR engine.
  326. This engine provides acceleration for copy, XOR and RAID6
  327. operations, and is available on Marvell Armada 7K and 8K
  328. platforms.
  329. config MXS_DMA
  330. bool "MXS DMA support"
  331. depends on ARCH_MXS || ARCH_MXC || COMPILE_TEST
  332. select STMP_DEVICE
  333. select DMA_ENGINE
  334. help
  335. Support the MXS DMA engine. This engine including APBH-DMA
  336. and APBX-DMA is integrated into some Freescale chips.
  337. config MX3_IPU
  338. bool "MX3x Image Processing Unit support"
  339. depends on ARCH_MXC
  340. select DMA_ENGINE
  341. default y
  342. help
  343. If you plan to use the Image Processing unit in the i.MX3x, say
  344. Y here. If unsure, select Y.
  345. config MX3_IPU_IRQS
  346. int "Number of dynamically mapped interrupts for IPU"
  347. depends on MX3_IPU
  348. range 2 137
  349. default 4
  350. help
  351. Out of 137 interrupt sources on i.MX31 IPU only very few are used.
  352. To avoid bloating the irq_desc[] array we allocate a sufficient
  353. number of IRQ slots and map them dynamically to specific sources.
  354. config NBPFAXI_DMA
  355. tristate "Renesas Type-AXI NBPF DMA support"
  356. select DMA_ENGINE
  357. depends on ARM || COMPILE_TEST
  358. help
  359. Support for "Type-AXI" NBPF DMA IPs from Renesas
  360. config OWL_DMA
  361. tristate "Actions Semi Owl SoCs DMA support"
  362. depends on ARCH_ACTIONS
  363. select DMA_ENGINE
  364. select DMA_VIRTUAL_CHANNELS
  365. help
  366. Enable support for the Actions Semi Owl SoCs DMA controller.
  367. config PCH_DMA
  368. tristate "Intel EG20T PCH / LAPIS Semicon IOH(ML7213/ML7223/ML7831) DMA"
  369. depends on PCI && (X86_32 || COMPILE_TEST)
  370. select DMA_ENGINE
  371. help
  372. Enable support for Intel EG20T PCH DMA engine.
  373. This driver also can be used for LAPIS Semiconductor IOH(Input/
  374. Output Hub), ML7213, ML7223 and ML7831.
  375. ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is
  376. for MP(Media Phone) use and ML7831 IOH is for general purpose use.
  377. ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series.
  378. ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH.
  379. config PL330_DMA
  380. tristate "DMA API Driver for PL330"
  381. select DMA_ENGINE
  382. depends on ARM_AMBA
  383. help
  384. Select if your platform has one or more PL330 DMACs.
  385. You need to provide platform specific settings via
  386. platform_data for a dma-pl330 device.
  387. config PXA_DMA
  388. bool "PXA DMA support"
  389. depends on (ARCH_MMP || ARCH_PXA)
  390. select DMA_ENGINE
  391. select DMA_VIRTUAL_CHANNELS
  392. help
  393. Support the DMA engine for PXA. It is also compatible with MMP PDMA
  394. platform. The internal DMA IP of all PXA variants is supported, with
  395. 16 to 32 channels for peripheral to memory or memory to memory
  396. transfers.
  397. config SIRF_DMA
  398. tristate "CSR SiRFprimaII/SiRFmarco DMA support"
  399. depends on ARCH_SIRF
  400. select DMA_ENGINE
  401. help
  402. Enable support for the CSR SiRFprimaII DMA engine.
  403. config STE_DMA40
  404. bool "ST-Ericsson DMA40 support"
  405. depends on ARCH_U8500
  406. select DMA_ENGINE
  407. help
  408. Support for ST-Ericsson DMA40 controller
  409. config ST_FDMA
  410. tristate "ST FDMA dmaengine support"
  411. depends on ARCH_STI
  412. depends on REMOTEPROC
  413. select ST_SLIM_REMOTEPROC
  414. select DMA_ENGINE
  415. select DMA_VIRTUAL_CHANNELS
  416. help
  417. Enable support for ST FDMA controller.
  418. It supports 16 independent DMA channels, accepts up to 32 DMA requests
  419. Say Y here if you have such a chipset.
  420. If unsure, say N.
  421. config STM32_DMA
  422. bool "STMicroelectronics STM32 DMA support"
  423. depends on ARCH_STM32 || COMPILE_TEST
  424. select DMA_ENGINE
  425. select DMA_VIRTUAL_CHANNELS
  426. help
  427. Enable support for the on-chip DMA controller on STMicroelectronics
  428. STM32 MCUs.
  429. If you have a board based on such a MCU and wish to use DMA say Y
  430. here.
  431. config STM32_DMAMUX
  432. bool "STMicroelectronics STM32 dma multiplexer support"
  433. depends on STM32_DMA || COMPILE_TEST
  434. help
  435. Enable support for the on-chip DMA multiplexer on STMicroelectronics
  436. STM32 MCUs.
  437. If you have a board based on such a MCU and wish to use DMAMUX say Y
  438. here.
  439. config STM32_MDMA
  440. bool "STMicroelectronics STM32 master dma support"
  441. depends on ARCH_STM32 || COMPILE_TEST
  442. depends on OF
  443. select DMA_ENGINE
  444. select DMA_VIRTUAL_CHANNELS
  445. help
  446. Enable support for the on-chip MDMA controller on STMicroelectronics
  447. STM32 platforms.
  448. If you have a board based on STM32 SoC and wish to use the master DMA
  449. say Y here.
  450. config SPRD_DMA
  451. tristate "Spreadtrum DMA support"
  452. depends on ARCH_SPRD || COMPILE_TEST
  453. select DMA_ENGINE
  454. select DMA_VIRTUAL_CHANNELS
  455. help
  456. Enable support for the on-chip DMA controller on Spreadtrum platform.
  457. config S3C24XX_DMAC
  458. bool "Samsung S3C24XX DMA support"
  459. depends on ARCH_S3C24XX || COMPILE_TEST
  460. select DMA_ENGINE
  461. select DMA_VIRTUAL_CHANNELS
  462. help
  463. Support for the Samsung S3C24XX DMA controller driver. The
  464. DMA controller is having multiple DMA channels which can be
  465. configured for different peripherals like audio, UART, SPI.
  466. The DMA controller can transfer data from memory to peripheral,
  467. periphal to memory, periphal to periphal and memory to memory.
  468. config TXX9_DMAC
  469. tristate "Toshiba TXx9 SoC DMA support"
  470. depends on MACH_TX49XX || MACH_TX39XX
  471. select DMA_ENGINE
  472. help
  473. Support the TXx9 SoC internal DMA controller. This can be
  474. integrated in chips such as the Toshiba TX4927/38/39.
  475. config TEGRA20_APB_DMA
  476. bool "NVIDIA Tegra20 APB DMA support"
  477. depends on ARCH_TEGRA
  478. select DMA_ENGINE
  479. help
  480. Support for the NVIDIA Tegra20 APB DMA controller driver. The
  481. DMA controller is having multiple DMA channel which can be
  482. configured for different peripherals like audio, UART, SPI,
  483. I2C etc which is in APB bus.
  484. This DMA controller transfers data from memory to peripheral fifo
  485. or vice versa. It does not support memory to memory data transfer.
  486. config TEGRA210_ADMA
  487. tristate "NVIDIA Tegra210 ADMA support"
  488. depends on (ARCH_TEGRA_210_SOC || COMPILE_TEST) && PM_CLK
  489. select DMA_ENGINE
  490. select DMA_VIRTUAL_CHANNELS
  491. help
  492. Support for the NVIDIA Tegra210 ADMA controller driver. The
  493. DMA controller has multiple DMA channels and is used to service
  494. various audio clients in the Tegra210 audio processing engine
  495. (APE). This DMA controller transfers data from memory to
  496. peripheral and vice versa. It does not support memory to
  497. memory data transfer.
  498. config TIMB_DMA
  499. tristate "Timberdale FPGA DMA support"
  500. depends on MFD_TIMBERDALE || COMPILE_TEST
  501. select DMA_ENGINE
  502. help
  503. Enable support for the Timberdale FPGA DMA engine.
  504. config XGENE_DMA
  505. tristate "APM X-Gene DMA support"
  506. depends on ARCH_XGENE || COMPILE_TEST
  507. select DMA_ENGINE
  508. select DMA_ENGINE_RAID
  509. select ASYNC_TX_ENABLE_CHANNEL_SWITCH
  510. help
  511. Enable support for the APM X-Gene SoC DMA engine.
  512. config XILINX_DMA
  513. tristate "Xilinx AXI DMAS Engine"
  514. depends on (ARCH_ZYNQ || MICROBLAZE || ARM64)
  515. select DMA_ENGINE
  516. help
  517. Enable support for Xilinx AXI VDMA Soft IP.
  518. AXI VDMA engine provides high-bandwidth direct memory access
  519. between memory and AXI4-Stream video type target
  520. peripherals including peripherals which support AXI4-
  521. Stream Video Protocol. It has two stream interfaces/
  522. channels, Memory Mapped to Stream (MM2S) and Stream to
  523. Memory Mapped (S2MM) for the data transfers.
  524. AXI CDMA engine provides high-bandwidth direct memory access
  525. between a memory-mapped source address and a memory-mapped
  526. destination address.
  527. AXI DMA engine provides high-bandwidth one dimensional direct
  528. memory access between memory and AXI4-Stream target peripherals.
  529. config XILINX_ZYNQMP_DMA
  530. tristate "Xilinx ZynqMP DMA Engine"
  531. depends on (ARCH_ZYNQ || MICROBLAZE || ARM64)
  532. select DMA_ENGINE
  533. help
  534. Enable support for Xilinx ZynqMP DMA controller.
  535. config ZX_DMA
  536. tristate "ZTE ZX DMA support"
  537. depends on ARCH_ZX || COMPILE_TEST
  538. select DMA_ENGINE
  539. select DMA_VIRTUAL_CHANNELS
  540. help
  541. Support the DMA engine for ZTE ZX family platform devices.
  542. # driver files
  543. source "drivers/dma/bestcomm/Kconfig"
  544. source "drivers/dma/mediatek/Kconfig"
  545. source "drivers/dma/qcom/Kconfig"
  546. source "drivers/dma/dw/Kconfig"
  547. source "drivers/dma/hsu/Kconfig"
  548. source "drivers/dma/sh/Kconfig"
  549. source "drivers/dma/ti/Kconfig"
  550. # clients
  551. comment "DMA Clients"
  552. depends on DMA_ENGINE
  553. config ASYNC_TX_DMA
  554. bool "Async_tx: Offload support for the async_tx api"
  555. depends on DMA_ENGINE
  556. help
  557. This allows the async_tx api to take advantage of offload engines for
  558. memcpy, memset, xor, and raid6 p+q operations. If your platform has
  559. a dma engine that can perform raid operations and you have enabled
  560. MD_RAID456 say Y.
  561. If unsure, say N.
  562. config DMATEST
  563. tristate "DMA Test client"
  564. depends on DMA_ENGINE
  565. select DMA_ENGINE_RAID
  566. help
  567. Simple DMA test client. Say N unless you're debugging a
  568. DMA Device driver.
  569. config DMA_ENGINE_RAID
  570. bool
  571. endif