1# DMA configuration options 2 3# Copyright (c) 2016 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6# 7# DMA options 8# 9menuconfig DMA 10 bool "Direct Memory Access (DMA) drivers" 11 12if DMA 13config DMA_64BIT 14 bool "DMA 64 bit address support" 15 help 16 When this option is true, 64 bit source and dest 17 DMA addresses are supported. 18 19config DMA_INIT_PRIORITY 20 int "DMA init priority" 21 default KERNEL_INIT_PRIORITY_DEFAULT 22 help 23 DMA driver device initialization priority. 24 25module = DMA 26module-str = dma 27source "subsys/logging/Kconfig.template.log_config" 28 29# zephyr-keep-sorted-start 30source "drivers/dma/Kconfig.andes_atcdmacx00" 31source "drivers/dma/Kconfig.bflb" 32source "drivers/dma/Kconfig.dma_pl330" 33source "drivers/dma/Kconfig.dw" 34source "drivers/dma/Kconfig.dw_axi_dmac" 35source "drivers/dma/Kconfig.emul" 36source "drivers/dma/Kconfig.esp32" 37source "drivers/dma/Kconfig.gd32" 38source "drivers/dma/Kconfig.infineon" 39source "drivers/dma/Kconfig.intel_adsp_gpdma" 40source "drivers/dma/Kconfig.intel_adsp_hda" 41source "drivers/dma/Kconfig.intel_lpss" 42source "drivers/dma/Kconfig.iproc_pax" 43source "drivers/dma/Kconfig.max32" 44source "drivers/dma/Kconfig.mchp" 45source "drivers/dma/Kconfig.mcux_edma" 46source "drivers/dma/Kconfig.mcux_lpc" 47source "drivers/dma/Kconfig.mcux_pxp" 48source "drivers/dma/Kconfig.mcux_smartdma" 49source "drivers/dma/Kconfig.nios2_msgdma" 50source "drivers/dma/Kconfig.npcx" 51source "drivers/dma/Kconfig.nxp_4ch_dma" 52source "drivers/dma/Kconfig.nxp_edma" 53source "drivers/dma/Kconfig.nxp_sdma" 54source "drivers/dma/Kconfig.nxp_sof_host_dma" 55source "drivers/dma/Kconfig.renesas_ra" 56source "drivers/dma/Kconfig.renesas_rz" 57source "drivers/dma/Kconfig.rpi_pico" 58source "drivers/dma/Kconfig.sam0" 59source "drivers/dma/Kconfig.sam_xdmac" 60source "drivers/dma/Kconfig.sedi" 61source "drivers/dma/Kconfig.sf32lb" 62source "drivers/dma/Kconfig.si32" 63source "drivers/dma/Kconfig.silabs" 64source "drivers/dma/Kconfig.siwx91x" 65source "drivers/dma/Kconfig.smartbond" 66source "drivers/dma/Kconfig.stm32" 67source "drivers/dma/Kconfig.ti_cc23x0" 68source "drivers/dma/Kconfig.wch" 69source "drivers/dma/Kconfig.xec" 70source "drivers/dma/Kconfig.xilinx_axi_dma" 71source "drivers/dma/Kconfig.xmc4xxx" 72# zephyr-keep-sorted-stop 73 74endif # DMA 75