1# Power path controllers configuration options
2
3# Copyright 2023 Google LLC
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig USBC_PPC_DRIVER
7	bool "USB-C PPC drivers"
8	help
9	  Enable USB-C Power Path Controllers support
10
11if USBC_PPC_DRIVER
12
13config USBC_PPC_INIT_PRIORITY
14	int "USBC PPC driver init priority"
15	default 82
16	help
17	  Initialization priority of the USB-C PPC drivers in POST_KERNEL.
18
19config USBC_PPC_SHELL
20	bool "Shell commands for PPC"
21	help
22	  Add useful shell commands to manipulate and debug the PPCs
23
24source "drivers/usb_c/ppc/Kconfig.nxp"
25source "drivers/usb_c/ppc/Kconfig.numaker"
26
27module = USBC_PPC
28module-str = usbc-ppc
29source "subsys/logging/Kconfig.template.log_config"
30
31endif # USBC_PPC_DRIVER
32