1# SPDX-License-Identifier: BSD-3-Clause
2
3menu "Drivers"
4
5rsource "intel/Kconfig"
6
7rsource "dw/Kconfig"
8
9rsource "imx/Kconfig"
10
11rsource "mediatek/Kconfig"
12
13config DUMMY_DMA
14	bool "Dummy DMA (software DMA driver)"
15	default n
16	depends on HOST_PTABLE
17	help
18	  Select this to enable the software-based host DMA implementation.
19	  This driver does all the transfers between host memory and DSP local
20	  buffer memory using regular memcpy. It requires direct access to the
21	  host memory.
22
23	  If unsure, select "n".
24
25config IPC_POLLING
26	bool "Enable IPC Polling support"
27	default n
28	help
29	  Select this to enable support for simple IPC polling. This allows
30	  users like GDB and boot loader a simple IPC mechanism that does not
31	  depend on IRQ or a scheduler.
32
33	  If unsure, select "n".
34
35endmenu # "Drivers"
36