Kconfig 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. config I2C_MUX
  2. bool "Support I2C multiplexers"
  3. 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.
  9. config SPL_I2C_MUX
  10. bool "Support I2C multiplexers on SPL"
  11. depends on I2C_MUX
  12. help
  13. This enables I2C buses to be multiplexed, so that you can select
  14. one of several buses using some sort of control mechanism. The
  15. bus select is handled automatically when that bus is accessed,
  16. using a suitable I2C MUX driver.
  17. config I2C_ARB_GPIO_CHALLENGE
  18. bool "GPIO-based I2C arbitration"
  19. depends on I2C_MUX
  20. help
  21. If you say yes to this option, support will be included for an
  22. I2C multimaster arbitration scheme using GPIOs and a challenge &
  23. response mechanism where masters have to claim the bus by asserting
  24. a GPIO.
  25. config I2C_MUX_PCA954x
  26. tristate "TI PCA954x I2C Mux/switches"
  27. depends on I2C_MUX
  28. help
  29. If you say yes here you get support for the TI PCA954x
  30. I2C mux/switch devices. It is x width I2C multiplexer which enables to
  31. paritioning I2C bus and connect multiple devices with the same address
  32. to the same I2C controller where driver handles proper routing to
  33. target i2c device. PCA9544 and PCA9548 are supported.