Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | # |
| 2 | # I2C subsystem configuration |
| 3 | # |
| 4 | |
Simon Glass | 59e11eb | 2021-07-10 21:14:35 -0600 | [diff] [blame] | 5 | menuconfig I2C |
| 6 | bool "I2C support" |
| 7 | default y |
| 8 | help |
| 9 | Note: |
| 10 | This is a stand-in for an option to enable I2C support. In fact this |
| 11 | simply enables building of the I2C directory for U-Boot. The actual |
| 12 | I2C feature is enabled by DM_I2C (for driver model) and |
| 13 | the #define CONFIG_SYS_I2C_LEGACY (for the legacy I2C stack). |
| 14 | |
| 15 | So at present there is no need to ever disable this option. |
| 16 | |
| 17 | Eventually it will: |
| 18 | |
| 19 | Enable support for the I2C (Inter-Integrated Circuit) bus in U-Boot. |
| 20 | I2C works with a clock and data line which can be driven by a |
| 21 | one or more masters or slaves. It is a fairly complex bus but is |
| 22 | widely used as it only needs two lines for communication. Speeds of |
| 23 | 400kbps are typical but up to 3.4Mbps is supported by some |
| 24 | hardware. Enable this option to build the drivers in drivers/i2c as |
| 25 | part of a U-Boot build. |
| 26 | |
| 27 | if I2C |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 28 | |
Masahiro Yamada | b6036bc | 2015-01-13 12:44:35 +0900 | [diff] [blame] | 29 | config DM_I2C |
| 30 | bool "Enable Driver Model for I2C drivers" |
| 31 | depends on DM |
| 32 | help |
Przemyslaw Marczak | 705fcf4 | 2015-03-31 18:57:17 +0200 | [diff] [blame] | 33 | Enable driver model for I2C. The I2C uclass interface: probe, read, |
| 34 | write and speed, is implemented with the bus drivers operations, |
| 35 | which provide methods for bus setting and data transfer. Each chip |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 36 | device (bus child) info is kept as parent plat. The interface |
Bartosz Golaszewski | e311482 | 2019-07-29 08:58:00 +0200 | [diff] [blame] | 37 | is defined in include/i2c.h. |
Simon Glass | 4bba9d3 | 2015-02-13 12:20:48 -0700 | [diff] [blame] | 38 | |
Igor Opaniuk | d1f3abe | 2021-02-09 13:52:43 +0200 | [diff] [blame] | 39 | config SPL_DM_I2C |
| 40 | bool "Enable Driver Model for I2C drivers in SPL" |
| 41 | depends on SPL_DM && DM_I2C |
| 42 | default y |
| 43 | help |
| 44 | Enable driver model for I2C. The I2C uclass interface: probe, read, |
| 45 | write and speed, is implemented with the bus drivers operations, |
| 46 | which provide methods for bus setting and data transfer. Each chip |
| 47 | device (bus child) info is kept as parent platdata. The interface |
| 48 | is defined in include/i2c.h. |
| 49 | |
Simon Glass | c7d53f0 | 2023-02-22 09:34:06 -0700 | [diff] [blame] | 50 | config TPL_DM_I2C |
| 51 | bool "Enable Driver Model for I2C drivers in TPL" |
| 52 | depends on TPL_DM && DM_I2C |
| 53 | help |
| 54 | Enable driver model for I2C. The I2C uclass interface: probe, read, |
| 55 | write and speed, is implemented with the bus drivers operations, |
| 56 | which provide methods for bus setting and data transfer. Each chip |
| 57 | device (bus child) info is kept as parent platdata. The interface |
| 58 | is defined in include/i2c.h. |
| 59 | |
Simon Glass | 747093d | 2022-04-30 00:56:53 -0600 | [diff] [blame] | 60 | config VPL_DM_I2C |
| 61 | bool "Enable Driver Model for I2C drivers in VPL" |
| 62 | depends on VPL_DM && DM_I2C |
| 63 | default y |
| 64 | help |
| 65 | Enable driver model for I2C. The I2C uclass interface: probe, read, |
| 66 | write and speed, is implemented with the bus drivers operations, |
| 67 | which provide methods for bus setting and data transfer. Each chip |
| 68 | device (bus child) info is kept as parent platdata. The interface |
| 69 | is defined in include/i2c.h. |
| 70 | |
Tom Rini | 55dabcc | 2021-08-18 23:12:24 -0400 | [diff] [blame] | 71 | config SYS_I2C_LEGACY |
| 72 | bool "Enable legacy I2C subsystem and drivers" |
| 73 | depends on !DM_I2C |
| 74 | help |
| 75 | Enable the legacy I2C subsystem and drivers. While this is |
| 76 | deprecated in U-Boot itself, this can be useful in some situations |
| 77 | in SPL or TPL. |
| 78 | |
| 79 | config SPL_SYS_I2C_LEGACY |
| 80 | bool "Enable legacy I2C subsystem and drivers in SPL" |
| 81 | depends on SUPPORT_SPL && !SPL_DM_I2C |
| 82 | help |
| 83 | Enable the legacy I2C subsystem and drivers in SPL. This is useful |
| 84 | in some size constrained situations. |
| 85 | |
| 86 | config TPL_SYS_I2C_LEGACY |
| 87 | bool "Enable legacy I2C subsystem and drivers in TPL" |
| 88 | depends on SUPPORT_TPL && !SPL_DM_I2C |
| 89 | help |
| 90 | Enable the legacy I2C subsystem and drivers in TPL. This is useful |
| 91 | in some size constrained situations. |
| 92 | |
Tom Rini | 52c7e37 | 2021-08-18 23:12:25 -0400 | [diff] [blame] | 93 | config SYS_I2C_EARLY_INIT |
| 94 | bool "Enable legacy I2C subsystem early in boot" |
| 95 | depends on BOARD_EARLY_INIT_F && SPL_SYS_I2C_LEGACY && SYS_I2C_MXC |
| 96 | help |
| 97 | Add the function prototype for i2c_early_init_f which is called in |
| 98 | board_early_init_f. |
| 99 | |
Simon Glass | cc456bd | 2015-08-03 08:19:23 -0600 | [diff] [blame] | 100 | config I2C_CROS_EC_TUNNEL |
| 101 | tristate "Chrome OS EC tunnel I2C bus" |
| 102 | depends on CROS_EC |
| 103 | help |
| 104 | This provides an I2C bus that will tunnel i2c commands through to |
| 105 | the other side of the Chrome OS EC to the I2C bus connected there. |
| 106 | This will work whatever the interface used to talk to the EC (SPI, |
| 107 | I2C or LPC). Some Chromebooks use this when the hardware design |
| 108 | does not allow direct access to the main PMIC from the AP. |
| 109 | |
Simon Glass | f48eaf0 | 2015-08-03 08:19:24 -0600 | [diff] [blame] | 110 | config I2C_CROS_EC_LDO |
| 111 | bool "Provide access to LDOs on the Chrome OS EC" |
| 112 | depends on CROS_EC |
| 113 | ---help--- |
| 114 | On many Chromebooks the main PMIC is inaccessible to the AP. This is |
| 115 | often dealt with by using an I2C pass-through interface provided by |
| 116 | the EC. On some unfortunate models (e.g. Spring) the pass-through |
| 117 | is not available, and an LDO message is available instead. This |
| 118 | option enables a driver which provides very basic access to those |
| 119 | regulators, via the EC. We implement this as an I2C bus which |
| 120 | emulates just the TPS65090 messages we know about. This is done to |
| 121 | avoid duplicating the logic in the TPS65090 regulator driver for |
| 122 | enabling/disabling an LDO. |
Simon Glass | cc456bd | 2015-08-03 08:19:23 -0600 | [diff] [blame] | 123 | |
Lukasz Majewski | e46f8a3 | 2017-03-21 12:08:25 +0100 | [diff] [blame] | 124 | config I2C_SET_DEFAULT_BUS_NUM |
| 125 | bool "Set default I2C bus number" |
| 126 | depends on DM_I2C |
| 127 | help |
| 128 | Set default number of I2C bus to be accessed. This option provides |
| 129 | behaviour similar to old (i.e. pre DM) I2C bus driver. |
| 130 | |
| 131 | config I2C_DEFAULT_BUS_NUMBER |
| 132 | hex "I2C default bus number" |
| 133 | depends on I2C_SET_DEFAULT_BUS_NUM |
| 134 | default 0x0 |
| 135 | help |
| 136 | Number of default I2C bus to use |
| 137 | |
Przemyslaw Marczak | c54473c | 2015-03-31 18:57:18 +0200 | [diff] [blame] | 138 | config DM_I2C_GPIO |
| 139 | bool "Enable Driver Model for software emulated I2C bus driver" |
| 140 | depends on DM_I2C && DM_GPIO |
| 141 | help |
| 142 | Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO |
| 143 | configuration is given by the device tree. Kernel-style device tree |
| 144 | bindings are supported. |
| 145 | Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt |
| 146 | |
Igor Opaniuk | d1f3abe | 2021-02-09 13:52:43 +0200 | [diff] [blame] | 147 | config SPL_DM_I2C_GPIO |
| 148 | bool "Enable Driver Model for software emulated I2C bus driver in SPL" |
Simon Glass | 83061db | 2021-07-10 21:14:30 -0600 | [diff] [blame] | 149 | depends on SPL_DM && DM_I2C_GPIO && SPL_DM_GPIO && SPL_GPIO |
Igor Opaniuk | d1f3abe | 2021-02-09 13:52:43 +0200 | [diff] [blame] | 150 | default y |
| 151 | help |
| 152 | Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO |
| 153 | configuration is given by the device tree. Kernel-style device tree |
| 154 | bindings are supported. |
| 155 | Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt |
| 156 | |
Songjun Wu | 8800e0f | 2016-06-20 13:22:38 +0800 | [diff] [blame] | 157 | config SYS_I2C_AT91 |
| 158 | bool "Atmel I2C driver" |
| 159 | depends on DM_I2C && ARCH_AT91 |
| 160 | help |
| 161 | Add support for the Atmel I2C driver. A serious problem is that there |
| 162 | is no documented way to issue repeated START conditions for more than |
| 163 | two messages, as needed to support combined I2C messages. Use the |
| 164 | i2c-gpio driver unless your system can cope with this limitation. |
| 165 | Binding info: doc/device-tree-bindings/i2c/i2c-at91.txt |
| 166 | |
Rayagonda Kokatanur | 956d57a | 2020-04-08 11:12:27 +0530 | [diff] [blame] | 167 | config SYS_I2C_IPROC |
| 168 | bool "Broadcom I2C driver" |
| 169 | depends on DM_I2C |
| 170 | help |
| 171 | Broadcom I2C driver. |
| 172 | Add support for Broadcom I2C driver. |
| 173 | Say yes here to to enable the Broadco I2C driver. |
| 174 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 175 | config SYS_I2C_FSL |
| 176 | bool "Freescale I2C bus driver" |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 177 | help |
| 178 | Add support for Freescale I2C busses as used on MPC8240, MPC8245, and |
| 179 | MPC85xx processors. |
| 180 | |
Tom Rini | 6d5d0c9 | 2021-08-18 23:12:35 -0400 | [diff] [blame] | 181 | if SYS_I2C_FSL && (SYS_I2C_LEGACY || SPL_SYS_I2C_LEGACY) |
| 182 | config SYS_FSL_I2C_OFFSET |
| 183 | hex "Offset from the IMMR of the address of the first I2C controller" |
| 184 | |
| 185 | config SYS_FSL_HAS_I2C2_OFFSET |
| 186 | bool "Support a second I2C controller" |
| 187 | |
| 188 | config SYS_FSL_I2C2_OFFSET |
| 189 | hex "Offset from the IMMR of the address of the second I2C controller" |
| 190 | depends on SYS_FSL_HAS_I2C2_OFFSET |
| 191 | |
| 192 | config SYS_FSL_HAS_I2C3_OFFSET |
| 193 | bool "Support a third I2C controller" |
| 194 | |
| 195 | config SYS_FSL_I2C3_OFFSET |
| 196 | hex "Offset from the IMMR of the address of the third I2C controller" |
| 197 | depends on SYS_FSL_HAS_I2C3_OFFSET |
| 198 | |
| 199 | config SYS_FSL_HAS_I2C4_OFFSET |
| 200 | bool "Support a fourth I2C controller" |
| 201 | |
| 202 | config SYS_FSL_I2C4_OFFSET |
| 203 | hex "Offset from the IMMR of the address of the fourth I2C controller" |
| 204 | depends on SYS_FSL_HAS_I2C4_OFFSET |
| 205 | endif |
| 206 | |
Moritz Fischer | fdec2d2 | 2015-12-28 09:47:11 -0800 | [diff] [blame] | 207 | config SYS_I2C_CADENCE |
| 208 | tristate "Cadence I2C Controller" |
Michal Simek | 664e16c | 2020-08-06 15:18:36 +0200 | [diff] [blame] | 209 | depends on DM_I2C |
Moritz Fischer | fdec2d2 | 2015-12-28 09:47:11 -0800 | [diff] [blame] | 210 | help |
| 211 | Say yes here to select Cadence I2C Host Controller. This controller is |
| 212 | e.g. used by Xilinx Zynq. |
| 213 | |
Arthur Li | 7f5ea25 | 2020-06-01 12:56:31 -0700 | [diff] [blame] | 214 | config SYS_I2C_CA |
| 215 | tristate "Cortina-Access I2C Controller" |
| 216 | depends on DM_I2C && CORTINA_PLATFORM |
Arthur Li | 7f5ea25 | 2020-06-01 12:56:31 -0700 | [diff] [blame] | 217 | help |
| 218 | Add support for the Cortina Access I2C host controller. |
| 219 | Say yes here to select Cortina-Access I2C Host Controller. |
| 220 | |
Adam Ford | 9f8cf76 | 2018-08-10 05:05:22 -0500 | [diff] [blame] | 221 | config SYS_I2C_DAVINCI |
| 222 | bool "Davinci I2C Controller" |
| 223 | depends on (ARCH_KEYSTONE || ARCH_DAVINCI) |
| 224 | help |
| 225 | Say yes here to add support for Davinci and Keystone I2C controller |
| 226 | |
Stefan Roese | e32d0db | 2016-04-28 09:47:17 +0200 | [diff] [blame] | 227 | config SYS_I2C_DW |
| 228 | bool "Designware I2C Controller" |
Stefan Roese | e32d0db | 2016-04-28 09:47:17 +0200 | [diff] [blame] | 229 | help |
| 230 | Say yes here to select the Designware I2C Host Controller. This |
| 231 | controller is used in various SoCs, e.g. the ST SPEAr, Altera |
| 232 | SoCFPGA, Synopsys ARC700 and some Intel x86 SoCs. |
| 233 | |
Minda Chen | 7eb62cb | 2023-07-25 17:46:47 +0800 | [diff] [blame] | 234 | config SYS_I2C_DW_PCI |
| 235 | bool "Designware PCI I2C Controller" |
| 236 | depends on SYS_I2C_DW && PCI && ACPIGEN |
| 237 | default y |
| 238 | help |
| 239 | Say yes here to select the Designware PCI I2C Host Controller. |
| 240 | This PCI I2C controller is the base on Desigware I2C host |
| 241 | controller. |
| 242 | |
Ryan Chen | 4088f5f | 2023-01-30 14:19:24 +0800 | [diff] [blame] | 243 | config SYS_I2C_AST2600 |
| 244 | bool "AST2600 I2C Controller" |
| 245 | depends on DM_I2C && ARCH_ASPEED |
| 246 | help |
| 247 | Say yes here to select AST2600 I2C Host Controller. The driver |
| 248 | support AST2600 I2C new mode register. This I2C controller supports: |
| 249 | _Standard-mode (up to 100 kHz) |
| 250 | _Fast-mode (up to 400 kHz) |
| 251 | _Fast-mode Plus (up to 1 MHz) |
| 252 | |
maxims@google.com | 4dc038f | 2017-04-17 12:00:30 -0700 | [diff] [blame] | 253 | config SYS_I2C_ASPEED |
| 254 | bool "Aspeed I2C Controller" |
| 255 | depends on DM_I2C && ARCH_ASPEED |
| 256 | help |
| 257 | Say yes here to select Aspeed I2C Host Controller. The driver |
| 258 | supports AST2500 and AST2400 controllers, but is very limited. |
| 259 | Only single master mode is supported and only byte-by-byte |
| 260 | synchronous reads and writes are supported, no Pool Buffers or DMA. |
| 261 | |
Simon Glass | abb0b01 | 2016-01-17 16:11:44 -0700 | [diff] [blame] | 262 | config SYS_I2C_INTEL |
| 263 | bool "Intel I2C/SMBUS driver" |
| 264 | depends on DM_I2C |
| 265 | help |
| 266 | Add support for the Intel SMBUS driver. So far this driver is just |
| 267 | a stub which perhaps some basic init. There is no implementation of |
| 268 | the I2C API meaning that any I2C operations will immediately fail |
| 269 | for now. |
| 270 | |
Peng Fan | 7ee3f14 | 2017-02-24 09:54:18 +0800 | [diff] [blame] | 271 | config SYS_I2C_IMX_LPI2C |
| 272 | bool "NXP i.MX LPI2C driver" |
Peng Fan | 7ee3f14 | 2017-02-24 09:54:18 +0800 | [diff] [blame] | 273 | help |
| 274 | Add support for the NXP i.MX LPI2C driver. |
| 275 | |
Trevor Woerner | 0705556 | 2021-06-10 22:37:08 -0400 | [diff] [blame] | 276 | config SYS_I2C_LPC32XX |
| 277 | bool "LPC32XX I2C driver" |
| 278 | depends on ARCH_LPC32XX |
| 279 | help |
| 280 | Enable support for the LPC32xx I2C driver. |
| 281 | |
Beniamino Galvani | f8d9ca1 | 2017-10-29 10:09:00 +0100 | [diff] [blame] | 282 | config SYS_I2C_MESON |
| 283 | bool "Amlogic Meson I2C driver" |
| 284 | depends on DM_I2C && ARCH_MESON |
| 285 | help |
Beniamino Galvani | 4ecbb8b | 2017-11-26 17:40:54 +0100 | [diff] [blame] | 286 | Add support for the I2C controller available in Amlogic Meson |
| 287 | SoCs. The controller supports programmable bus speed including |
| 288 | standard (100kbits/s) and fast (400kbit/s) speed and allows the |
| 289 | software to define a flexible format of the bit streams. It has an |
| 290 | internal buffer holding up to 8 bytes for transfers and supports |
| 291 | both 7-bit and 10-bit addresses. |
Beniamino Galvani | f8d9ca1 | 2017-10-29 10:09:00 +0100 | [diff] [blame] | 292 | |
Weijie Gao | 9ad71f6 | 2022-09-09 19:59:48 +0800 | [diff] [blame] | 293 | config SYS_I2C_MTK |
| 294 | bool "MediaTek I2C driver" |
| 295 | help |
| 296 | This selects the MediaTek Integrated Inter Circuit bus driver. |
| 297 | The I2C bus adapter is the base for some other I2C client, |
| 298 | eg: touch, sensors. |
| 299 | If you want to use MediaTek I2C interface, say Y here. |
| 300 | If unsure, say N. |
| 301 | |
Padmarao Begari | 0dc0d1e | 2021-11-17 18:21:16 +0530 | [diff] [blame] | 302 | config SYS_I2C_MICROCHIP |
| 303 | bool "Microchip I2C driver" |
| 304 | help |
| 305 | Add support for the Microchip I2C driver. This is operating on |
| 306 | standard mode up to 100 kbits/s and fast mode up to 400 kbits/s. |
| 307 | |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 308 | config SYS_I2C_MXC |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 309 | bool "NXP MXC I2C driver" |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 310 | help |
Chris Packham | 7475145 | 2019-01-13 22:13:25 +1300 | [diff] [blame] | 311 | Add support for the NXP I2C driver. This supports up to four bus |
| 312 | channels and operating on standard mode up to 100 kbits/s and fast |
| 313 | mode up to 400 kbits/s. |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 314 | |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 315 | if SYS_I2C_MXC && (SYS_I2C_LEGACY || SPL_SYS_I2C_LEGACY) |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 316 | config SYS_I2C_MXC_I2C1 |
| 317 | bool "NXP MXC I2C1" |
| 318 | help |
| 319 | Add support for NXP MXC I2C Controller 1. |
| 320 | Required for SoCs which have I2C MXC controller 1 eg LS1088A, LS2080A |
| 321 | |
| 322 | config SYS_I2C_MXC_I2C2 |
| 323 | bool "NXP MXC I2C2" |
| 324 | help |
| 325 | Add support for NXP MXC I2C Controller 2. |
| 326 | Required for SoCs which have I2C MXC controller 2 eg LS1088A, LS2080A |
| 327 | |
| 328 | config SYS_I2C_MXC_I2C3 |
| 329 | bool "NXP MXC I2C3" |
| 330 | help |
| 331 | Add support for NXP MXC I2C Controller 3. |
| 332 | Required for SoCs which have I2C MXC controller 3 eg LS1088A, LS2080A |
| 333 | |
| 334 | config SYS_I2C_MXC_I2C4 |
| 335 | bool "NXP MXC I2C4" |
| 336 | help |
| 337 | Add support for NXP MXC I2C Controller 4. |
| 338 | Required for SoCs which have I2C MXC controller 4 eg LS1088A, LS2080A |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 339 | |
| 340 | config SYS_I2C_MXC_I2C5 |
| 341 | bool "NXP MXC I2C5" |
| 342 | help |
| 343 | Add support for NXP MXC I2C Controller 5. |
| 344 | Required for SoCs which have I2C MXC controller 5 eg LX2160A |
| 345 | |
| 346 | config SYS_I2C_MXC_I2C6 |
| 347 | bool "NXP MXC I2C6" |
| 348 | help |
| 349 | Add support for NXP MXC I2C Controller 6. |
| 350 | Required for SoCs which have I2C MXC controller 6 eg LX2160A |
| 351 | |
| 352 | config SYS_I2C_MXC_I2C7 |
| 353 | bool "NXP MXC I2C7" |
| 354 | help |
| 355 | Add support for NXP MXC I2C Controller 7. |
| 356 | Required for SoCs which have I2C MXC controller 7 eg LX2160A |
| 357 | |
| 358 | config SYS_I2C_MXC_I2C8 |
| 359 | bool "NXP MXC I2C8" |
| 360 | help |
| 361 | Add support for NXP MXC I2C Controller 8. |
| 362 | Required for SoCs which have I2C MXC controller 8 eg LX2160A |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 363 | endif |
| 364 | |
| 365 | if SYS_I2C_MXC_I2C1 |
| 366 | config SYS_MXC_I2C1_SPEED |
| 367 | int "I2C Channel 1 speed" |
Tom Rini | 2ce7b65 | 2021-02-09 08:03:10 -0500 | [diff] [blame] | 368 | default 40000000 if TARGET_LS2080A_EMU |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 369 | default 100000 |
| 370 | help |
| 371 | MXC I2C Channel 1 speed |
| 372 | |
| 373 | config SYS_MXC_I2C1_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 374 | hex "I2C1 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 375 | default 0x0 |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 376 | help |
| 377 | MXC I2C1 Slave |
| 378 | endif |
| 379 | |
| 380 | if SYS_I2C_MXC_I2C2 |
| 381 | config SYS_MXC_I2C2_SPEED |
| 382 | int "I2C Channel 2 speed" |
Tom Rini | 2ce7b65 | 2021-02-09 08:03:10 -0500 | [diff] [blame] | 383 | default 40000000 if TARGET_LS2080A_EMU |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 384 | default 100000 |
| 385 | help |
| 386 | MXC I2C Channel 2 speed |
| 387 | |
| 388 | config SYS_MXC_I2C2_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 389 | hex "I2C2 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 390 | default 0x0 |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 391 | help |
| 392 | MXC I2C2 Slave |
| 393 | endif |
| 394 | |
| 395 | if SYS_I2C_MXC_I2C3 |
| 396 | config SYS_MXC_I2C3_SPEED |
| 397 | int "I2C Channel 3 speed" |
| 398 | default 100000 |
| 399 | help |
| 400 | MXC I2C Channel 3 speed |
| 401 | |
| 402 | config SYS_MXC_I2C3_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 403 | hex "I2C3 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 404 | default 0x0 |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 405 | help |
| 406 | MXC I2C3 Slave |
| 407 | endif |
| 408 | |
| 409 | if SYS_I2C_MXC_I2C4 |
| 410 | config SYS_MXC_I2C4_SPEED |
| 411 | int "I2C Channel 4 speed" |
| 412 | default 100000 |
| 413 | help |
| 414 | MXC I2C Channel 4 speed |
| 415 | |
| 416 | config SYS_MXC_I2C4_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 417 | hex "I2C4 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 418 | default 0x0 |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 419 | help |
| 420 | MXC I2C4 Slave |
| 421 | endif |
| 422 | |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 423 | if SYS_I2C_MXC_I2C5 |
| 424 | config SYS_MXC_I2C5_SPEED |
| 425 | int "I2C Channel 5 speed" |
| 426 | default 100000 |
| 427 | help |
| 428 | MXC I2C Channel 5 speed |
| 429 | |
| 430 | config SYS_MXC_I2C5_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 431 | hex "I2C5 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 432 | default 0x0 |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 433 | help |
| 434 | MXC I2C5 Slave |
| 435 | endif |
| 436 | |
| 437 | if SYS_I2C_MXC_I2C6 |
| 438 | config SYS_MXC_I2C6_SPEED |
| 439 | int "I2C Channel 6 speed" |
| 440 | default 100000 |
| 441 | help |
| 442 | MXC I2C Channel 6 speed |
| 443 | |
| 444 | config SYS_MXC_I2C6_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 445 | hex "I2C6 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 446 | default 0x0 |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 447 | help |
| 448 | MXC I2C6 Slave |
| 449 | endif |
| 450 | |
| 451 | if SYS_I2C_MXC_I2C7 |
| 452 | config SYS_MXC_I2C7_SPEED |
| 453 | int "I2C Channel 7 speed" |
| 454 | default 100000 |
| 455 | help |
| 456 | MXC I2C Channel 7 speed |
| 457 | |
| 458 | config SYS_MXC_I2C7_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 459 | hex "I2C7 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 460 | default 0x0 |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 461 | help |
| 462 | MXC I2C7 Slave |
| 463 | endif |
| 464 | |
| 465 | if SYS_I2C_MXC_I2C8 |
| 466 | config SYS_MXC_I2C8_SPEED |
| 467 | int "I2C Channel 8 speed" |
| 468 | default 100000 |
| 469 | help |
| 470 | MXC I2C Channel 8 speed |
| 471 | |
| 472 | config SYS_MXC_I2C8_SLAVE |
Tom Rini | 15e7b76 | 2021-08-18 23:12:33 -0400 | [diff] [blame] | 473 | hex "I2C8 Slave" |
Tom Rini | a077ac1 | 2023-08-02 11:09:43 -0400 | [diff] [blame] | 474 | default 0x0 |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 475 | help |
| 476 | MXC I2C8 Slave |
| 477 | endif |
| 478 | |
Stefan Bosch | c25e9e0 | 2020-07-10 19:07:28 +0200 | [diff] [blame] | 479 | config SYS_I2C_NEXELL |
| 480 | bool "Nexell I2C driver" |
| 481 | depends on DM_I2C |
| 482 | help |
| 483 | Add support for the Nexell I2C driver. This is used with various |
| 484 | Nexell parts such as S5Pxx18 series SoCs. All chips |
| 485 | have several I2C ports and all are provided, controlled by the |
| 486 | device tree. |
| 487 | |
Jim Liu | 2b77eea | 2022-06-23 13:31:42 +0800 | [diff] [blame] | 488 | config SYS_I2C_NPCM |
| 489 | bool "Nuvoton NPCM I2C driver" |
| 490 | help |
| 491 | Support for Nuvoton I2C controller driver. |
| 492 | |
Pragnesh Patel | b2d4cbe | 2020-11-14 14:42:34 +0530 | [diff] [blame] | 493 | config SYS_I2C_OCORES |
| 494 | bool "ocores I2C driver" |
| 495 | depends on DM_I2C |
| 496 | help |
| 497 | Add support for ocores I2C controller. For details see |
| 498 | https://opencores.org/projects/i2c |
| 499 | |
Adam Ford | daa0f05 | 2017-08-07 13:11:34 -0500 | [diff] [blame] | 500 | config SYS_I2C_OMAP24XX |
| 501 | bool "TI OMAP2+ I2C driver" |
Vignesh R | 14106bc | 2019-06-04 18:08:11 -0500 | [diff] [blame] | 502 | depends on ARCH_OMAP2PLUS || ARCH_K3 |
Adam Ford | daa0f05 | 2017-08-07 13:11:34 -0500 | [diff] [blame] | 503 | help |
| 504 | Add support for the OMAP2+ I2C driver. |
| 505 | |
Marek Vasut | a06a0ac | 2018-04-21 18:57:28 +0200 | [diff] [blame] | 506 | config SYS_I2C_RCAR_I2C |
| 507 | bool "Renesas RCar I2C driver" |
Hai Pham | 79da1a9 | 2023-02-28 22:25:51 +0100 | [diff] [blame] | 508 | depends on (RCAR_GEN2 || RCAR_64) && DM_I2C |
Marek Vasut | a06a0ac | 2018-04-21 18:57:28 +0200 | [diff] [blame] | 509 | help |
| 510 | Support for Renesas RCar I2C controller. |
| 511 | |
Marek Vasut | 9e75ea4 | 2017-11-28 08:02:27 +0100 | [diff] [blame] | 512 | config SYS_I2C_RCAR_IIC |
| 513 | bool "Renesas RCar Gen3 IIC driver" |
Marek Vasut | 61eb551 | 2023-02-28 00:03:45 +0100 | [diff] [blame] | 514 | depends on (RCAR_GEN2 || RCAR_GEN3) && DM_I2C |
Marek Vasut | 9e75ea4 | 2017-11-28 08:02:27 +0100 | [diff] [blame] | 515 | help |
| 516 | Support for Renesas RCar Gen3 IIC controller. |
| 517 | |
Simon Glass | 3437469 | 2015-08-30 16:55:39 -0600 | [diff] [blame] | 518 | config SYS_I2C_ROCKCHIP |
| 519 | bool "Rockchip I2C driver" |
| 520 | depends on DM_I2C |
| 521 | help |
| 522 | Add support for the Rockchip I2C driver. This is used with various |
| 523 | Rockchip parts such as RK3126, RK3128, RK3036 and RK3288. All chips |
Chris Packham | 7475145 | 2019-01-13 22:13:25 +1300 | [diff] [blame] | 524 | have several I2C ports and all are provided, controlled by the |
Simon Glass | 3437469 | 2015-08-30 16:55:39 -0600 | [diff] [blame] | 525 | device tree. |
| 526 | |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 527 | config SYS_I2C_SANDBOX |
| 528 | bool "Sandbox I2C driver" |
| 529 | depends on SANDBOX && DM_I2C |
Simon Glass | c7d53f0 | 2023-02-22 09:34:06 -0700 | [diff] [blame] | 530 | default y |
| 531 | help |
| 532 | Enable I2C support for sandbox. This is an emulation of a real I2C |
| 533 | bus. Devices can be attached to the bus using the device tree |
| 534 | which specifies the driver to use. See sandbox.dts as an example. |
| 535 | |
| 536 | config SPL_SYS_I2C_SANDBOX |
| 537 | bool "Sandbox I2C driver (SPL)" |
| 538 | depends on SPL && SANDBOX && DM_I2C |
| 539 | default y |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 540 | help |
| 541 | Enable I2C support for sandbox. This is an emulation of a real I2C |
| 542 | bus. Devices can be attached to the bus using the device tree |
Masahiro Yamada | c77c7db | 2017-02-11 12:39:55 +0900 | [diff] [blame] | 543 | which specifies the driver to use. See sandbox.dts as an example. |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 544 | |
Tom Rini | 6aa0754 | 2021-08-18 23:12:34 -0400 | [diff] [blame] | 545 | config SYS_I2C_SH |
| 546 | bool "Legacy SuperH I2C interface" |
| 547 | depends on ARCH_RMOBILE && SYS_I2C_LEGACY |
| 548 | help |
| 549 | Enable the legacy SuperH I2C interface. |
| 550 | |
| 551 | if SYS_I2C_SH |
| 552 | config SYS_I2C_SH_NUM_CONTROLLERS |
| 553 | int |
| 554 | default 5 |
| 555 | |
| 556 | config SYS_I2C_SH_BASE0 |
| 557 | hex |
| 558 | default 0xE6820000 |
| 559 | |
| 560 | config SYS_I2C_SH_BASE1 |
| 561 | hex |
| 562 | default 0xE6822000 |
| 563 | |
| 564 | config SYS_I2C_SH_BASE2 |
| 565 | hex |
| 566 | default 0xE6824000 |
| 567 | |
| 568 | config SYS_I2C_SH_BASE3 |
| 569 | hex |
| 570 | default 0xE6826000 |
| 571 | |
| 572 | config SYS_I2C_SH_BASE4 |
| 573 | hex |
| 574 | default 0xE6828000 |
| 575 | |
| 576 | config SH_I2C_8BIT |
| 577 | bool |
| 578 | default y |
| 579 | |
| 580 | config SH_I2C_DATA_HIGH |
| 581 | int |
| 582 | default 4 |
| 583 | |
| 584 | config SH_I2C_DATA_LOW |
| 585 | int |
| 586 | default 5 |
| 587 | |
| 588 | config SH_I2C_CLOCK |
| 589 | int |
| 590 | default 104000000 |
| 591 | endif |
| 592 | |
Tom Rini | de69572 | 2021-08-17 17:59:46 -0400 | [diff] [blame] | 593 | config SYS_I2C_SOFT |
| 594 | bool "Legacy software I2C interface" |
| 595 | help |
| 596 | Enable the legacy software defined I2C interface |
| 597 | |
| 598 | config SYS_I2C_SOFT_SPEED |
| 599 | int "Software I2C bus speed" |
| 600 | depends on SYS_I2C_SOFT |
| 601 | default 100000 |
| 602 | help |
| 603 | Speed of the software I2C bus |
| 604 | |
| 605 | config SYS_I2C_SOFT_SLAVE |
| 606 | hex "Software I2C slave address" |
| 607 | depends on SYS_I2C_SOFT |
| 608 | default 0xfe |
| 609 | help |
| 610 | Slave address of the software I2C bus |
| 611 | |
Suneel Garapati | 5c2c3e8 | 2020-05-26 14:13:07 +0200 | [diff] [blame] | 612 | config SYS_I2C_OCTEON |
| 613 | bool "Octeon II/III/TX/TX2 I2C driver" |
| 614 | depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2) && DM_I2C |
| 615 | default y |
| 616 | help |
| 617 | Add support for the Marvell Octeon I2C driver. This is used with |
| 618 | various Octeon parts such as Octeon II/III and OcteonTX/TX2. All |
| 619 | chips have several I2C ports and all are provided, controlled by |
| 620 | the device tree. |
| 621 | |
Sumit Garg | 9bdec96 | 2023-02-01 19:29:00 +0530 | [diff] [blame] | 622 | config SYS_I2C_QUP |
| 623 | bool "Qualcomm QUP I2C controller" |
| 624 | depends on ARCH_SNAPDRAGON |
| 625 | help |
| 626 | Support for Qualcomm QUP I2C controller based on Qualcomm Universal |
| 627 | Peripherals (QUP) engine. The QUP engine is an advanced high |
| 628 | performance slave port that provides a common data path (an output |
| 629 | FIFO and an input FIFO) for I2C and SPI interfaces. The I2C/SPI QUP |
| 630 | controller is publicly documented in the Snapdragon 410E (APQ8016E) |
| 631 | Technical Reference Manual, chapter "6.1 Qualcomm Universal |
| 632 | Peripherals Engine (QUP)". |
| 633 | |
Jaehoon Chung | 1d61ad9 | 2017-01-09 14:47:52 +0900 | [diff] [blame] | 634 | config SYS_I2C_S3C24X0 |
| 635 | bool "Samsung I2C driver" |
Tom Rini | 0283da4 | 2021-08-17 17:59:42 -0400 | [diff] [blame] | 636 | depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) && DM_I2C |
Jaehoon Chung | 1d61ad9 | 2017-01-09 14:47:52 +0900 | [diff] [blame] | 637 | help |
| 638 | Support for Samsung I2C controller as Samsung SoCs. |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 639 | |
Patrice Chotard | 4fadcaf | 2017-08-09 14:45:27 +0200 | [diff] [blame] | 640 | config SYS_I2C_STM32F7 |
| 641 | bool "STMicroelectronics STM32F7 I2C support" |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 642 | depends on (STM32F7 || STM32H7 || ARCH_STM32MP) && DM_I2C |
Patrice Chotard | 4fadcaf | 2017-08-09 14:45:27 +0200 | [diff] [blame] | 643 | help |
| 644 | Enable this option to add support for STM32 I2C controller |
| 645 | introduced with STM32F7/H7 SoCs. This I2C controller supports : |
| 646 | _ Slave and master modes |
| 647 | _ Multimaster capability |
| 648 | _ Standard-mode (up to 100 kHz) |
| 649 | _ Fast-mode (up to 400 kHz) |
| 650 | _ Fast-mode Plus (up to 1 MHz) |
| 651 | _ 7-bit and 10-bit addressing mode |
| 652 | _ Multiple 7-bit slave addresses (2 addresses, 1 with configurable mask) |
| 653 | _ All 7-bit addresses acknowledge mode |
| 654 | _ General call |
| 655 | _ Programmable setup and hold times |
| 656 | _ Easy to use event management |
| 657 | _ Optional clock stretching |
| 658 | _ Software reset |
| 659 | |
Samuel Holland | 104950a | 2021-10-08 00:17:20 -0500 | [diff] [blame] | 660 | config SYS_I2C_SUN6I_P2WI |
| 661 | bool "Allwinner sun6i P2WI controller" |
| 662 | depends on ARCH_SUNXI |
| 663 | help |
| 664 | Support for the P2WI (Push/Pull 2 Wire Interface) controller embedded |
| 665 | in the Allwinner A31 and A31s SOCs. This interface is used to connect |
| 666 | to specific devices like the X-Powers AXP221 PMIC. |
| 667 | |
Samuel Holland | 3227c85 | 2021-10-08 00:17:21 -0500 | [diff] [blame] | 668 | config SYS_I2C_SUN8I_RSB |
| 669 | bool "Allwinner sun8i Reduced Serial Bus controller" |
| 670 | depends on ARCH_SUNXI |
| 671 | help |
| 672 | Support for Allwinner's Reduced Serial Bus (RSB) controller. This |
| 673 | controller is responsible for communicating with various RSB based |
| 674 | devices, such as X-Powers AXPxxx PMICs and AC100/AC200 CODEC ICs. |
| 675 | |
Jassi Brar | 4483fba | 2021-06-04 18:44:48 +0900 | [diff] [blame] | 676 | config SYS_I2C_SYNQUACER |
| 677 | bool "Socionext SynQuacer I2C controller" |
| 678 | depends on ARCH_SYNQUACER && DM_I2C |
| 679 | help |
| 680 | Support for Socionext Synquacer I2C controller. This I2C controller |
| 681 | will be used for RTC and LS-connector on DeveloperBox. |
| 682 | |
Peter Robinson | 02253d4 | 2019-02-20 12:17:26 +0000 | [diff] [blame] | 683 | config SYS_I2C_TEGRA |
| 684 | bool "NVIDIA Tegra internal I2C controller" |
Trevor Woerner | 18138ab | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 685 | depends on ARCH_TEGRA |
Peter Robinson | 02253d4 | 2019-02-20 12:17:26 +0000 | [diff] [blame] | 686 | help |
| 687 | Support for NVIDIA I2C controller available in Tegra SoCs. |
| 688 | |
Masahiro Yamada | 26f820f | 2015-01-13 12:44:36 +0900 | [diff] [blame] | 689 | config SYS_I2C_UNIPHIER |
| 690 | bool "UniPhier I2C driver" |
| 691 | depends on ARCH_UNIPHIER && DM_I2C |
| 692 | default y |
| 693 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 694 | Support for UniPhier I2C controller driver. This I2C controller |
| 695 | is used on PH1-LD4, PH1-sLD8 or older UniPhier SoCs. |
Masahiro Yamada | 238bd0b | 2015-01-13 12:44:37 +0900 | [diff] [blame] | 696 | |
| 697 | config SYS_I2C_UNIPHIER_F |
| 698 | bool "UniPhier FIFO-builtin I2C driver" |
| 699 | depends on ARCH_UNIPHIER && DM_I2C |
| 700 | default y |
| 701 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 702 | Support for UniPhier FIFO-builtin I2C controller driver. |
Masahiro Yamada | 238bd0b | 2015-01-13 12:44:37 +0900 | [diff] [blame] | 703 | This I2C controller is used on PH1-Pro4 or newer UniPhier SoCs. |
Simon Glass | 3d1957f | 2015-08-03 08:19:21 -0600 | [diff] [blame] | 704 | |
Heiko Schocher | e3bc4bb | 2018-10-11 07:26:33 +0200 | [diff] [blame] | 705 | config SYS_I2C_VERSATILE |
| 706 | bool "Arm Ltd Versatile I2C bus driver" |
Tom Rini | c6c26a0 | 2021-02-20 20:05:47 -0500 | [diff] [blame] | 707 | depends on DM_I2C && TARGET_VEXPRESS64_JUNO |
Heiko Schocher | e3bc4bb | 2018-10-11 07:26:33 +0200 | [diff] [blame] | 708 | help |
| 709 | Add support for the Arm Ltd Versatile Express I2C driver. The I2C host |
| 710 | controller is present in the development boards manufactured by Arm Ltd. |
| 711 | |
Marek BehĂșn | 999ac22 | 2021-10-09 19:33:37 +0200 | [diff] [blame] | 712 | config SYS_I2C_MV |
| 713 | bool "Marvell PXA (Armada 3720) I2C driver" |
| 714 | help |
| 715 | Support for PXA based I2C controller used on Armada 3720 SoC. |
| 716 | In Linux, this driver is called i2c-pxa. |
| 717 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 718 | config SYS_I2C_MVTWSI |
| 719 | bool "Marvell I2C driver" |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 720 | help |
| 721 | Support for Marvell I2C controllers as used on the orion5x and |
| 722 | kirkwood SoC families. |
| 723 | |
Stephen Warren | 34f1c9f | 2016-08-08 11:28:27 -0600 | [diff] [blame] | 724 | config TEGRA186_BPMP_I2C |
| 725 | bool "Enable Tegra186 BPMP-based I2C driver" |
| 726 | depends on TEGRA186_BPMP |
| 727 | help |
| 728 | Support for Tegra I2C controllers managed by the BPMP (Boot and |
| 729 | Power Management Processor). On Tegra186, some I2C controllers are |
| 730 | directly controlled by the main CPU, whereas others are controlled |
| 731 | by the BPMP, and can only be accessed by the main CPU via IPC |
| 732 | requests to the BPMP. This driver covers the latter case. |
| 733 | |
Tom Rini | a5752f8 | 2021-08-18 23:12:32 -0400 | [diff] [blame] | 734 | config SYS_I2C_SLAVE |
| 735 | hex "I2C Slave address channel (all buses)" |
| 736 | depends on SYS_I2C_LEGACY || SPL_SYS_I2C_LEGACY || TPL_SYS_I2C_LEGACY |
| 737 | default 0xfe |
| 738 | help |
| 739 | I2C Slave address channel 0 for all buses in the legacy drivers. |
| 740 | Many boards/controllers/drivers don't support an I2C slave |
| 741 | interface so provide a default slave address for them for use in |
| 742 | common code. A real value for CONFIG_SYS_I2C_SLAVE should be |
| 743 | defined for any board which does support a slave interface and |
| 744 | this default used otherwise. |
| 745 | |
| 746 | config SYS_I2C_SPEED |
| 747 | int "I2C Slave channel 0 speed (all buses)" |
| 748 | depends on SYS_I2C_LEGACY || SPL_SYS_I2C_LEGACY || TPL_SYS_I2C_LEGACY |
| 749 | default 100000 |
| 750 | help |
| 751 | I2C Slave speed channel 0 for all buses in the legacy drivers. |
| 752 | |
Adam Ford | fc760cc | 2017-08-11 06:39:34 -0500 | [diff] [blame] | 753 | config SYS_I2C_BUS_MAX |
| 754 | int "Max I2C busses" |
Tom Rini | cb42c1f | 2022-06-27 13:35:50 -0400 | [diff] [blame] | 755 | depends on ARCH_OMAP2PLUS || ARCH_SOCFPGA |
Tom Rini | cb42c1f | 2022-06-27 13:35:50 -0400 | [diff] [blame] | 756 | default 3 if OMAP34XX || AM33XX || AM43XX |
Tom Rini | f552816 | 2022-12-02 16:42:41 -0500 | [diff] [blame] | 757 | default 4 if ARCH_SOCFPGA || OMAP44XX |
Adam Ford | fc760cc | 2017-08-11 06:39:34 -0500 | [diff] [blame] | 758 | default 5 if OMAP54XX |
| 759 | help |
| 760 | Define the maximum number of available I2C buses. |
| 761 | |
Marek Vasut | ad827a5 | 2018-12-19 12:26:27 +0100 | [diff] [blame] | 762 | config SYS_I2C_XILINX_XIIC |
| 763 | bool "Xilinx AXI I2C driver" |
| 764 | depends on DM_I2C |
| 765 | help |
| 766 | Support for Xilinx AXI I2C controller. |
| 767 | |
Mario Six | 9216421 | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 768 | config SYS_I2C_IHS |
| 769 | bool "gdsys IHS I2C driver" |
| 770 | depends on DM_I2C |
| 771 | help |
| 772 | Support for gdsys IHS I2C driver on FPGA bus. |
| 773 | |
Simon Glass | 3d1957f | 2015-08-03 08:19:21 -0600 | [diff] [blame] | 774 | source "drivers/i2c/muxes/Kconfig" |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 775 | |
Simon Glass | 59e11eb | 2021-07-10 21:14:35 -0600 | [diff] [blame] | 776 | endif |