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