29 lines
706 B
Plaintext
29 lines
706 B
Plaintext
# USBC TCPC configuration options
|
|
|
|
# Copyright 2022 The Chromium OS Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig USBC_TCPC_DRIVER
|
|
bool "USBC TCPC drivers"
|
|
help
|
|
Enable USBC TypeC Port Controller (TCPC) drivers
|
|
|
|
if USBC_TCPC_DRIVER
|
|
|
|
config USBC_INIT_PRIORITY
|
|
int "USBC driver init priority"
|
|
default 80
|
|
help
|
|
USBC device driver initialization priority.
|
|
Do not mess with it unless you know what you are doing.
|
|
Note that the priority needs to be lower than the USBC stack
|
|
so that it can start before the USBC sub-system.
|
|
|
|
source "drivers/usbc/tcpc/Kconfig.tcpc_stm32"
|
|
|
|
module = USBC
|
|
module-str = usbc
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif # USBC_TCPC_DRIVER
|