1# Renesas RA Family
2
3# Copyright (c) 2024 Renesas Electronics Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6config SPI_RENESAS_RA
7	bool "Renesas RA SPI"
8	default y
9	depends on DT_HAS_RENESAS_RA_SPI_ENABLED
10	select USE_RA_FSP_SPI
11	select PINCTRL
12	help
13	  Enable Renesas RA SPI Driver.
14
15if SPI_RENESAS_RA
16
17config SPI_INTERRUPT
18	bool "RA MCU SPI Interrupt Support"
19	help
20	  Enable Interrupt support for the SPI Driver of RA family.
21
22config SPI_RA_DTC
23	bool "RA MCU SPI DTC Support"
24	select USE_RA_FSP_DTC
25	help
26	  Enable the SPI DTC mode for SPI instances
27
28config SPI_USE_HW_SS
29	bool "RA MCU SPI Hardware Slave Select support"
30	default y
31	depends on !SOC_SERIES_RA2A1
32	help
33	  Use Slave Select pin instead of software Slave Select.
34
35endif # SPI_RENESAS_RA
36