1# Copyright (c) 2024 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4config UART_RENESAS_RZ_SCIF
5	bool "Renesas RZ SCIF UART"
6	default y
7	depends on DT_HAS_RENESAS_RZ_SCIF_UART_ENABLED
8	select SERIAL_HAS_DRIVER
9	select USE_RZ_FSP_SCIF_UART
10	select PINCTRL
11	help
12	  Enable Renesas RZ SCIF UART Driver.
13
14if UART_RENESAS_RZ_SCIF
15
16config UART_RENESAS_RZG_INIT_DELAY_MS
17	int "UART initialization delay in milliseconds"
18	default 8000
19	help
20	  This option is to make a delay to wait for the A55 to complete its setting first
21	  before UART initialization of M33.
22
23endif
24