1# Copyright (c) 2020 Innoseis BV 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig I2C_TCA954X 5 bool "I2C addressable switch" 6 default y 7 depends on DT_HAS_TI_TCA9546A_ENABLED || DT_HAS_TI_TCA9548A_ENABLED 8 help 9 Enable TCA954x series I2C bus switch 10 11if I2C_TCA954X 12 13config I2C_TCA954X_ROOT_INIT_PRIO 14 int "TCA954x root driver init priority" 15 default I2C_INIT_PRIORITY 16 help 17 Should be lower than `I2C_TCA954X_CHANNEL_INIT_PRIO` 18 19config I2C_TCA954X_CHANNEL_INIT_PRIO 20 int "TCA954x channel driver init priority" 21 default I2C_INIT_PRIORITY 22 help 23 Should be higher than `I2C_TCA954X_ROOT_INIT_PRIO` 24 25endif 26