1# USB-C RT1715 TCPC configuration options 2 3# Copyright (c) 2024 Jianxiong Gu <jianxiong.gu@outlook.com> 4# SPDX-License-Identifier: Apache-2.0 5 6config USBC_TCPC_RT1715 7 bool "USB-C TCPC device controller driver" 8 select USBC_TCPC_TCPCI 9 default y 10 depends on DT_HAS_RICHTEK_RT1715_ENABLED 11 help 12 Enable USB-C TCPC support for the Richtek RT1715 13 14if USBC_TCPC_RT1715 15 16config USBC_TCPC_RT1715_INIT_DELAY 17 int "RT1715 init delay" 18 default 5 19 help 20 Delay between each try of the TCPC initialization 21 22config USBC_TCPC_RT1715_INIT_RETRIES 23 int "RT1715 init retries" 24 default 10 25 help 26 Number of initialization tries that will be performed 27 28endif 29