1# Copyright (c) 2022 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
2# SPDX-License-Identifier: Apache-2.0
3
4config SPI_PL022
5	default y
6	depends on DT_HAS_ARM_PL022_ENABLED
7	bool "ARM PL022 SPI driver"
8
9if SPI_PL022
10
11config SPI_PL022_INTERRUPT
12	bool "PL022 interrupt mode"
13	help
14	  Enables interrupt support for PL022 SPI driver.
15
16config SPI_PL022_DMA
17	bool "PL022 DMA mode"
18	select DMA
19	help
20	  Enables DMA support for PL022 SPI driver.
21
22endif
23