zephyr/drivers/serial/Kconfig.renesas_ra
Duy Phuong Hoang. Nguyen 7060672c37 drivers: serial: Initial support for SCI UART
First commit to support serial driver running on r_sci_uart for Renesas
RA devices.

Signed-off-by: The Nguyen <the.nguyen.yf@renesas.com>
Signed-off-by: Duy Phuong Hoang. Nguyen <duy.nguyen.xa@renesas.com>
2024-08-19 09:59:27 -04:00

35 lines
826 B
Plaintext

# Copyright (c) 2023 TOKITA Hiroshi <tokita.hiroshi@fujitsu.com>
# Copyright (c) 2024 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0
config UART_RENESAS_RA
bool "Renesas RA Series UART Driver"
default y
depends on DT_HAS_RENESAS_RA_UART_SCI_ENABLED
select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT
help
Enable Renesas RA series UART driver.
config UART_SCI_RA
bool "Renesas RA SCI UART"
default y
depends on DT_HAS_RENESAS_RA_SCI_UART_ENABLED
select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT
select SERIAL_SUPPORT_ASYNC
select USE_RA_FSP_SCI_UART
select USE_RA_FSP_DTC if UART_ASYNC_API
help
Enable Renesas RA SCI UART Driver.
if UART_SCI_RA
config UART_RA_SCI_UART_FIFO_ENABLE
bool "RA SCI UART FIFO usage enable"
default y
help
Enable RA SCI FIFO
endif