1# DMA configuration options
2
3# Copyright (c) 2022 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config DMA_INTEL_ADSP_GPDMA
7	bool "Intel ADSP General Purpose Direct Memory Access driver"
8	default y
9	depends on DT_HAS_INTEL_ADSP_GPDMA_ENABLED
10	help
11	  Intel ADSP DMA driver.
12
13if DMA_INTEL_ADSP_GPDMA
14
15config DMA_INTEL_ADSP_GPDMA_NEED_CONTROLLER_OWNERSHIP
16	bool
17	default y
18	help
19	  Hidden option to indicate that the driver needs to request
20	  dma controller ownership from the host.
21
22config DMA_INTEL_ADSP_GPDMA_HAS_LLP
23	bool "Intel ADSP GPDMA Linear Link Position Feature"
24	default y if SOC_SERIES_INTEL_ACE
25	help
26	  Intel ADSP GPDMA may optionally have a linear link position
27	  feature.
28
29config DMA_INTEL_ADSP_GPDMA_DEBUG
30	bool "Debug dump for IP registers"
31	help
32	  Dump Intel ADSP GPDMA registers for debug
33
34source "drivers/dma/Kconfig.dw_common"
35
36endif # DMA_INTEL_ADSP_GPDMA
37