1# SPDX-License-Identifier: BSD-3-Clause
2
3config DW
4	bool
5	default n
6	help
7	  This has to be selected if platform supports Designware features.
8
9if DW
10
11config DW_DMA
12	bool "Designware DMA driver"
13	default n
14	help
15	  Select this to enable support for the Designware DMA controller.
16
17config DW_DMA_AGGREGATED_IRQ
18	bool
19	default n
20	help
21	  Some platforms cannot register interrupt per DW-DMA channel
22	  and have the possibility only to register interrupts per
23	  DMA controller, which require manual handling of aggregated
24	  irq.
25
26	  Any platforms with DW-DMA aggregated interrupts support
27	  should set this.
28
29config DW_SPI
30	bool
31	default n
32
33config DW_GPIO
34	bool
35	default n
36
37endif # DW
38