1# USB-C PS8xxx TCPC configuration options
2
3# Copyright 2024 Google LLC
4# SPDX-License-Identifier: Apache-2.0
5
6config USBC_TCPC_PS8XXX
7	bool "USB-C TCPC device controller driver"
8	select USBC_TCPC_TCPCI
9	default y
10	depends on DT_HAS_PARADE_PS8XXX_ENABLED
11	help
12	  Enable USB-C TCPC support for the Parade PS8xxx chip family
13
14if USBC_TCPC_PS8XXX
15
16config USBC_TCPC_PS8XXX_INIT_DELAY
17	int "PS8xxx init delay"
18	default 25
19	help
20	  Delay between each try of the TCPC initialization
21
22config USBC_TCPC_PS8XXX_INIT_RETRIES
23	int "PS8xxx init retries"
24	default 10
25	help
26	  Number of initialization tries that will be performed
27
28endif
29