Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 1 | # |
| 2 | # Multiplexer I2C chip drivers configuration |
| 3 | # |
| 4 | |
| 5 | menu "Multiplexer I2C Chip support" |
| 6 | depends on I2C_MUX |
| 7 | |
Doug Anderson | b81dfaa | 2013-04-16 06:29:00 +0000 | [diff] [blame] | 8 | config I2C_ARB_GPIO_CHALLENGE |
| 9 | tristate "GPIO-based I2C arbitration" |
Geert Uytterhoeven | 7e5cd69 | 2015-05-05 18:32:22 +0200 | [diff] [blame] | 10 | depends on GPIOLIB || COMPILE_TEST |
Peter Rosin | fabf08a | 2017-08-01 15:16:21 +0200 | [diff] [blame] | 11 | depends on OF || COMPILE_TEST |
Doug Anderson | b81dfaa | 2013-04-16 06:29:00 +0000 | [diff] [blame] | 12 | help |
| 13 | If you say yes to this option, support will be included for an |
| 14 | I2C multimaster arbitration scheme using GPIOs and a challenge & |
| 15 | response mechanism where masters have to claim the bus by asserting |
| 16 | a GPIO. |
| 17 | |
| 18 | This driver can also be built as a module. If so, the module |
| 19 | will be called i2c-arb-gpio-challenge. |
| 20 | |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 21 | config I2C_MUX_GPIO |
| 22 | tristate "GPIO-based I2C multiplexer" |
Alexandre Courbot | 76ec9d1 | 2013-03-28 04:34:56 -0700 | [diff] [blame] | 23 | depends on GPIOLIB |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 24 | help |
| 25 | If you say yes to this option, support will be included for a |
| 26 | GPIO based I2C multiplexer. This driver provides access to |
| 27 | I2C busses connected through a MUX, which is controlled |
| 28 | through GPIO pins. |
| 29 | |
| 30 | This driver can also be built as a module. If so, the module |
Jean Delvare | e7065e2 | 2012-04-28 15:32:06 +0200 | [diff] [blame] | 31 | will be called i2c-mux-gpio. |
Peter Korsgaard | 92ed1a7 | 2011-01-10 22:11:23 +0100 | [diff] [blame] | 32 | |
Peter Rosin | ac8498f | 2017-05-14 21:51:12 +0200 | [diff] [blame] | 33 | config I2C_MUX_GPMUX |
| 34 | tristate "General Purpose I2C multiplexer" |
| 35 | select MULTIPLEXER |
| 36 | depends on OF || COMPILE_TEST |
| 37 | help |
| 38 | If you say yes to this option, support will be included for a |
| 39 | general purpose I2C multiplexer. This driver provides access to |
| 40 | I2C busses connected through a MUX, which in turn is controlled |
| 41 | by a MUX-controller from the MUX subsystem. |
| 42 | |
| 43 | This driver can also be built as a module. If so, the module |
| 44 | will be called i2c-mux-gpmux. |
| 45 | |
Michael Hennerich | dbed8a8 | 2017-04-11 14:16:16 +0200 | [diff] [blame] | 46 | config I2C_MUX_LTC4306 |
| 47 | tristate "LTC LTC4306/5 I2C multiplexer" |
| 48 | select GPIOLIB |
| 49 | select REGMAP_I2C |
| 50 | help |
| 51 | If you say yes here you get support for the Analog Devices |
| 52 | LTC4306 or LTC4305 I2C mux/switch devices. |
| 53 | |
| 54 | This driver can also be built as a module. If so, the module |
| 55 | will be called i2c-mux-ltc4306. |
| 56 | |
Guenter Roeck | ae63b13 | 2010-10-24 18:16:58 +0200 | [diff] [blame] | 57 | config I2C_MUX_PCA9541 |
| 58 | tristate "NXP PCA9541 I2C Master Selector" |
Guenter Roeck | ae63b13 | 2010-10-24 18:16:58 +0200 | [diff] [blame] | 59 | help |
| 60 | If you say yes here you get support for the NXP PCA9541 |
| 61 | I2C Master Selector. |
| 62 | |
| 63 | This driver can also be built as a module. If so, the module |
Wolfram Sang | b4f0b74 | 2012-04-25 22:29:43 +0200 | [diff] [blame] | 64 | will be called i2c-mux-pca9541. |
Guenter Roeck | ae63b13 | 2010-10-24 18:16:58 +0200 | [diff] [blame] | 65 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 66 | config I2C_MUX_PCA954x |
| 67 | tristate "Philips PCA954x I2C Mux/switches" |
Geert Uytterhoeven | 7e5cd69 | 2015-05-05 18:32:22 +0200 | [diff] [blame] | 68 | depends on GPIOLIB || COMPILE_TEST |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 69 | help |
| 70 | If you say yes here you get support for the Philips PCA954x |
| 71 | I2C mux/switch devices. |
| 72 | |
| 73 | This driver can also be built as a module. If so, the module |
Wolfram Sang | b4f0b74 | 2012-04-25 22:29:43 +0200 | [diff] [blame] | 74 | will be called i2c-mux-pca954x. |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 75 | |
Stephen Warren | ae58d1e | 2012-05-18 09:29:34 -0600 | [diff] [blame] | 76 | config I2C_MUX_PINCTRL |
| 77 | tristate "pinctrl-based I2C multiplexer" |
| 78 | depends on PINCTRL |
Peter Rosin | c4aee3e | 2017-05-21 18:48:07 +0200 | [diff] [blame] | 79 | depends on OF || COMPILE_TEST |
Stephen Warren | ae58d1e | 2012-05-18 09:29:34 -0600 | [diff] [blame] | 80 | help |
| 81 | If you say yes to this option, support will be included for an I2C |
| 82 | multiplexer that uses the pinctrl subsystem, i.e. pin multiplexing. |
| 83 | This is useful for SoCs whose I2C module's signals can be routed to |
| 84 | different sets of pins at run-time. |
| 85 | |
| 86 | This driver can also be built as a module. If so, the module will be |
Chris Gorman | d1510a2 | 2017-07-12 13:31:26 -0400 | [diff] [blame] | 87 | called i2c-mux-pinctrl. |
Stephen Warren | ae58d1e | 2012-05-18 09:29:34 -0600 | [diff] [blame] | 88 | |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 89 | config I2C_MUX_REG |
| 90 | tristate "Register-based I2C multiplexer" |
Linus Walleij | 93d710a | 2016-11-14 15:34:17 +0100 | [diff] [blame] | 91 | depends on HAS_IOMEM |
York Sun | b3fdd32 | 2015-08-17 11:53:48 -0700 | [diff] [blame] | 92 | help |
| 93 | If you say yes to this option, support will be included for a |
| 94 | register based I2C multiplexer. This driver provides access to |
| 95 | I2C busses connected through a MUX, which is controlled |
| 96 | by a single register. |
| 97 | |
| 98 | This driver can also be built as a module. If so, the module |
| 99 | will be called i2c-mux-reg. |
| 100 | |
Wolfram Sang | 50a5ba8 | 2016-01-13 15:29:27 +0100 | [diff] [blame] | 101 | config I2C_DEMUX_PINCTRL |
| 102 | tristate "pinctrl-based I2C demultiplexer" |
| 103 | depends on PINCTRL && OF |
| 104 | select OF_DYNAMIC |
| 105 | help |
| 106 | If you say yes to this option, support will be included for an I2C |
| 107 | demultiplexer that uses the pinctrl subsystem. This is useful if you |
| 108 | want to change the I2C master at run-time depending on features. |
| 109 | |
Vadim Pasternak | c02b7bf | 2016-11-10 21:26:23 +0000 | [diff] [blame] | 110 | config I2C_MUX_MLXCPLD |
| 111 | tristate "Mellanox CPLD based I2C multiplexer" |
| 112 | help |
| 113 | If you say yes to this option, support will be included for a |
| 114 | CPLD based I2C multiplexer. This driver provides access to |
| 115 | I2C busses connected through a MUX, which is controlled |
| 116 | by a CPLD register. |
| 117 | |
| 118 | This driver can also be built as a module. If so, the module |
| 119 | will be called i2c-mux-mlxcpld. |
| 120 | |
Michael Lawnick | 7f52813 | 2010-08-11 18:21:03 +0200 | [diff] [blame] | 121 | endmenu |