blob: 68f15261be771ca24fbe2d1c19776d69e4daf9af [file] [log] [blame]
Simon Glass3d1957f2015-08-03 08:19:21 -06001config I2C_MUX
Michal Simek61d815a2015-12-08 11:18:53 +01002 bool "Support I2C multiplexers"
Simon Glass3d1957f2015-08-03 08:19:21 -06003 depends on DM_I2C
4 help
5 This enables I2C buses to be multiplexed, so that you can select
6 one of several buses using some sort of control mechanism. The
7 bus select is handled automatically when that bus is accessed,
8 using a suitable I2C MUX driver.
Simon Glassb725dc42015-08-03 08:19:22 -06009
Simon Glass4082fce2016-01-21 19:43:53 -070010config SPL_I2C_MUX
11 bool "Support I2C multiplexers on SPL"
12 depends on I2C_MUX
13 help
14 This enables I2C buses to be multiplexed, so that you can select
15 one of several buses using some sort of control mechanism. The
16 bus select is handled automatically when that bus is accessed,
17 using a suitable I2C MUX driver.
18
Simon Glassb725dc42015-08-03 08:19:22 -060019config I2C_ARB_GPIO_CHALLENGE
Michal Simek0305be12015-12-08 11:18:54 +010020 bool "GPIO-based I2C arbitration"
21 depends on I2C_MUX
22 help
23 If you say yes to this option, support will be included for an
24 I2C multimaster arbitration scheme using GPIOs and a challenge &
25 response mechanism where masters have to claim the bus by asserting
26 a GPIO.
Michal Simekd79ac322016-04-25 10:50:42 +020027
28config I2C_MUX_PCA954x
29 tristate "TI PCA954x I2C Mux/switches"
30 depends on I2C_MUX
31 help
Luca Ceresoli4cdf4e02019-04-09 08:57:41 +020032 If you say yes here you get support for the TI PCA954x I2C mux/switch
33 devices. It is x width I2C multiplexer which enables to partitioning
34 I2C bus and connect multiple devices with the same address to the same
35 I2C controller where driver handles proper routing to target i2c
Luca Ceresoli9985b742019-04-09 08:57:43 +020036 device. Supported chips are PCA9543, PCA9544, PCA9547, PCA9548 and
37 PCA9646.
Peng Fana4305562017-08-14 18:00:05 +080038
39config I2C_MUX_GPIO
40 tristate "GPIO-based I2C multiplexer"
41 depends on I2C_MUX && DM_GPIO
42 help
43 If you say yes to this option, support will be included for
44 a GPIO based I2C multiplexer. This driver provides access to
45 I2C busses connected through a MUX, which is controlled
46 through GPIO pins.