2015-08-03 14:19:21 +00:00
|
|
|
config I2C_MUX
|
2015-12-08 10:18:53 +00:00
|
|
|
bool "Support I2C multiplexers"
|
2015-08-03 14:19:21 +00:00
|
|
|
depends on DM_I2C
|
|
|
|
help
|
|
|
|
This enables I2C buses to be multiplexed, so that you can select
|
|
|
|
one of several buses using some sort of control mechanism. The
|
|
|
|
bus select is handled automatically when that bus is accessed,
|
|
|
|
using a suitable I2C MUX driver.
|
2015-08-03 14:19:22 +00:00
|
|
|
|
2016-01-22 02:43:53 +00:00
|
|
|
config SPL_I2C_MUX
|
|
|
|
bool "Support I2C multiplexers on SPL"
|
|
|
|
depends on I2C_MUX
|
|
|
|
help
|
|
|
|
This enables I2C buses to be multiplexed, so that you can select
|
|
|
|
one of several buses using some sort of control mechanism. The
|
|
|
|
bus select is handled automatically when that bus is accessed,
|
|
|
|
using a suitable I2C MUX driver.
|
|
|
|
|
2015-08-03 14:19:22 +00:00
|
|
|
config I2C_ARB_GPIO_CHALLENGE
|
2015-12-08 10:18:54 +00:00
|
|
|
bool "GPIO-based I2C arbitration"
|
|
|
|
depends on I2C_MUX
|
|
|
|
help
|
|
|
|
If you say yes to this option, support will be included for an
|
|
|
|
I2C multimaster arbitration scheme using GPIOs and a challenge &
|
|
|
|
response mechanism where masters have to claim the bus by asserting
|
|
|
|
a GPIO.
|
2016-04-25 08:50:42 +00:00
|
|
|
|
|
|
|
config I2C_MUX_PCA954x
|
|
|
|
tristate "TI PCA954x I2C Mux/switches"
|
|
|
|
depends on I2C_MUX
|
|
|
|
help
|
2019-04-09 06:57:41 +00:00
|
|
|
If you say yes here you get support for the TI PCA954x I2C mux/switch
|
|
|
|
devices. It is x width I2C multiplexer which enables to partitioning
|
|
|
|
I2C bus and connect multiple devices with the same address to the same
|
|
|
|
I2C controller where driver handles proper routing to target i2c
|
2020-04-01 02:55:27 +00:00
|
|
|
device. Supported chips are PCA9543, PCA9544, PCA9546, PCA9547,
|
|
|
|
PCA9548 and PCA9646.
|
2017-08-14 10:00:05 +00:00
|
|
|
|
|
|
|
config I2C_MUX_GPIO
|
|
|
|
tristate "GPIO-based I2C multiplexer"
|
|
|
|
depends on I2C_MUX && DM_GPIO
|
|
|
|
help
|
|
|
|
If you say yes to this option, support will be included for
|
|
|
|
a GPIO based I2C multiplexer. This driver provides access to
|
|
|
|
I2C busses connected through a MUX, which is controlled
|
|
|
|
through GPIO pins.
|