zephyr/drivers/serial/Kconfig.renesas_rz
Nhut Nguyen 5a65c861a7 drivers: serial: Add interrupt-driven API support for RZ/G3S
This commit is to support UART interrupt-driven API for Renesas RZ/G3S.

Signed-off-by: Nhut Nguyen <nhut.nguyen.kc@renesas.com>
2025-01-21 09:12:15 +01:00

24 lines
619 B
Text

# Copyright (c) 2024 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0
config UART_RENESAS_RZ_SCIF
bool "Renesas RZ SCIF UART"
default y
depends on DT_HAS_RENESAS_RZ_SCIF_UART_ENABLED
select SERIAL_HAS_DRIVER
select SERIAL_SUPPORT_INTERRUPT
select USE_RZ_FSP_SCIF_UART
select PINCTRL
help
Enable Renesas RZ SCIF UART Driver.
if UART_RENESAS_RZ_SCIF
config UART_RENESAS_RZG_INIT_DELAY_MS
int "UART initialization delay in milliseconds"
default 8000
help
This option is to make a delay to wait for the A55 to complete its setting first
before UART initialization of M33.
endif