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 SERIAL_SUPPORT_INTERRUPT 10 select USE_RZ_FSP_SCIF_UART 11 select PINCTRL 12 help 13 Enable Renesas RZ SCIF UART Driver. 14 15config UART_RENESAS_RZ_SCI 16 bool "Renesas RZ SCI UART" 17 default y 18 depends on DT_HAS_RENESAS_RZ_SCI_UART_ENABLED 19 select PINCTRL 20 select SERIAL_HAS_DRIVER 21 select SERIAL_SUPPORT_INTERRUPT 22 select USE_RZ_FSP_SCI_UART 23 help 24 Enable Renesas RZ SCI UART Driver. 25 26if UART_RENESAS_RZ_SCIF 27 28config UART_RENESAS_RZG_INIT_DELAY_MS 29 int "UART initialization delay in milliseconds" 30 default 8000 31 help 32 This option is to make a delay to wait for the A55 to complete its setting first 33 before UART initialization of M33. 34 35endif 36