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 | cc456bd | 2015-08-03 08:19:23 -0600 | [diff] [blame] | 50 | config I2C_CROS_EC_TUNNEL |
| 51 | tristate "Chrome OS EC tunnel I2C bus" |
| 52 | depends on CROS_EC |
| 53 | help |
| 54 | This provides an I2C bus that will tunnel i2c commands through to |
| 55 | the other side of the Chrome OS EC to the I2C bus connected there. |
| 56 | This will work whatever the interface used to talk to the EC (SPI, |
| 57 | I2C or LPC). Some Chromebooks use this when the hardware design |
| 58 | does not allow direct access to the main PMIC from the AP. |
| 59 | |
Simon Glass | f48eaf0 | 2015-08-03 08:19:24 -0600 | [diff] [blame] | 60 | config I2C_CROS_EC_LDO |
| 61 | bool "Provide access to LDOs on the Chrome OS EC" |
| 62 | depends on CROS_EC |
| 63 | ---help--- |
| 64 | On many Chromebooks the main PMIC is inaccessible to the AP. This is |
| 65 | often dealt with by using an I2C pass-through interface provided by |
| 66 | the EC. On some unfortunate models (e.g. Spring) the pass-through |
| 67 | is not available, and an LDO message is available instead. This |
| 68 | option enables a driver which provides very basic access to those |
| 69 | regulators, via the EC. We implement this as an I2C bus which |
| 70 | emulates just the TPS65090 messages we know about. This is done to |
| 71 | avoid duplicating the logic in the TPS65090 regulator driver for |
| 72 | enabling/disabling an LDO. |
Simon Glass | cc456bd | 2015-08-03 08:19:23 -0600 | [diff] [blame] | 73 | |
Lukasz Majewski | e46f8a3 | 2017-03-21 12:08:25 +0100 | [diff] [blame] | 74 | config I2C_SET_DEFAULT_BUS_NUM |
| 75 | bool "Set default I2C bus number" |
| 76 | depends on DM_I2C |
| 77 | help |
| 78 | Set default number of I2C bus to be accessed. This option provides |
| 79 | behaviour similar to old (i.e. pre DM) I2C bus driver. |
| 80 | |
| 81 | config I2C_DEFAULT_BUS_NUMBER |
| 82 | hex "I2C default bus number" |
| 83 | depends on I2C_SET_DEFAULT_BUS_NUM |
| 84 | default 0x0 |
| 85 | help |
| 86 | Number of default I2C bus to use |
| 87 | |
Przemyslaw Marczak | c54473c | 2015-03-31 18:57:18 +0200 | [diff] [blame] | 88 | config DM_I2C_GPIO |
| 89 | bool "Enable Driver Model for software emulated I2C bus driver" |
| 90 | depends on DM_I2C && DM_GPIO |
| 91 | help |
| 92 | Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO |
| 93 | configuration is given by the device tree. Kernel-style device tree |
| 94 | bindings are supported. |
| 95 | Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt |
| 96 | |
Igor Opaniuk | d1f3abe | 2021-02-09 13:52:43 +0200 | [diff] [blame] | 97 | config SPL_DM_I2C_GPIO |
| 98 | bool "Enable Driver Model for software emulated I2C bus driver in SPL" |
Simon Glass | 83061db | 2021-07-10 21:14:30 -0600 | [diff] [blame] | 99 | depends on SPL_DM && DM_I2C_GPIO && SPL_DM_GPIO && SPL_GPIO |
Igor Opaniuk | d1f3abe | 2021-02-09 13:52:43 +0200 | [diff] [blame] | 100 | default y |
| 101 | help |
| 102 | Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO |
| 103 | configuration is given by the device tree. Kernel-style device tree |
| 104 | bindings are supported. |
| 105 | Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt |
| 106 | |
Songjun Wu | 8800e0f | 2016-06-20 13:22:38 +0800 | [diff] [blame] | 107 | config SYS_I2C_AT91 |
| 108 | bool "Atmel I2C driver" |
| 109 | depends on DM_I2C && ARCH_AT91 |
| 110 | help |
| 111 | Add support for the Atmel I2C driver. A serious problem is that there |
| 112 | is no documented way to issue repeated START conditions for more than |
| 113 | two messages, as needed to support combined I2C messages. Use the |
| 114 | i2c-gpio driver unless your system can cope with this limitation. |
| 115 | Binding info: doc/device-tree-bindings/i2c/i2c-at91.txt |
| 116 | |
Rayagonda Kokatanur | 956d57a | 2020-04-08 11:12:27 +0530 | [diff] [blame] | 117 | config SYS_I2C_IPROC |
| 118 | bool "Broadcom I2C driver" |
| 119 | depends on DM_I2C |
| 120 | help |
| 121 | Broadcom I2C driver. |
| 122 | Add support for Broadcom I2C driver. |
| 123 | Say yes here to to enable the Broadco I2C driver. |
| 124 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 125 | config SYS_I2C_FSL |
| 126 | bool "Freescale I2C bus driver" |
| 127 | depends on DM_I2C |
| 128 | help |
| 129 | Add support for Freescale I2C busses as used on MPC8240, MPC8245, and |
| 130 | MPC85xx processors. |
| 131 | |
Moritz Fischer | fdec2d2 | 2015-12-28 09:47:11 -0800 | [diff] [blame] | 132 | config SYS_I2C_CADENCE |
| 133 | tristate "Cadence I2C Controller" |
Michal Simek | 664e16c | 2020-08-06 15:18:36 +0200 | [diff] [blame] | 134 | depends on DM_I2C |
Moritz Fischer | fdec2d2 | 2015-12-28 09:47:11 -0800 | [diff] [blame] | 135 | help |
| 136 | Say yes here to select Cadence I2C Host Controller. This controller is |
| 137 | e.g. used by Xilinx Zynq. |
| 138 | |
Arthur Li | 7f5ea25 | 2020-06-01 12:56:31 -0700 | [diff] [blame] | 139 | config SYS_I2C_CA |
| 140 | tristate "Cortina-Access I2C Controller" |
| 141 | depends on DM_I2C && CORTINA_PLATFORM |
| 142 | default n |
| 143 | help |
| 144 | Add support for the Cortina Access I2C host controller. |
| 145 | Say yes here to select Cortina-Access I2C Host Controller. |
| 146 | |
Adam Ford | 9f8cf76 | 2018-08-10 05:05:22 -0500 | [diff] [blame] | 147 | config SYS_I2C_DAVINCI |
| 148 | bool "Davinci I2C Controller" |
| 149 | depends on (ARCH_KEYSTONE || ARCH_DAVINCI) |
| 150 | help |
| 151 | Say yes here to add support for Davinci and Keystone I2C controller |
| 152 | |
Stefan Roese | e32d0db | 2016-04-28 09:47:17 +0200 | [diff] [blame] | 153 | config SYS_I2C_DW |
| 154 | bool "Designware I2C Controller" |
| 155 | default n |
| 156 | help |
| 157 | Say yes here to select the Designware I2C Host Controller. This |
| 158 | controller is used in various SoCs, e.g. the ST SPEAr, Altera |
| 159 | SoCFPGA, Synopsys ARC700 and some Intel x86 SoCs. |
| 160 | |
maxims@google.com | 4dc038f | 2017-04-17 12:00:30 -0700 | [diff] [blame] | 161 | config SYS_I2C_ASPEED |
| 162 | bool "Aspeed I2C Controller" |
| 163 | depends on DM_I2C && ARCH_ASPEED |
| 164 | help |
| 165 | Say yes here to select Aspeed I2C Host Controller. The driver |
| 166 | supports AST2500 and AST2400 controllers, but is very limited. |
| 167 | Only single master mode is supported and only byte-by-byte |
| 168 | synchronous reads and writes are supported, no Pool Buffers or DMA. |
| 169 | |
Simon Glass | abb0b01 | 2016-01-17 16:11:44 -0700 | [diff] [blame] | 170 | config SYS_I2C_INTEL |
| 171 | bool "Intel I2C/SMBUS driver" |
| 172 | depends on DM_I2C |
| 173 | help |
| 174 | Add support for the Intel SMBUS driver. So far this driver is just |
| 175 | a stub which perhaps some basic init. There is no implementation of |
| 176 | the I2C API meaning that any I2C operations will immediately fail |
| 177 | for now. |
| 178 | |
Peng Fan | 7ee3f14 | 2017-02-24 09:54:18 +0800 | [diff] [blame] | 179 | config SYS_I2C_IMX_LPI2C |
| 180 | bool "NXP i.MX LPI2C driver" |
Peng Fan | 7ee3f14 | 2017-02-24 09:54:18 +0800 | [diff] [blame] | 181 | help |
| 182 | Add support for the NXP i.MX LPI2C driver. |
| 183 | |
Trevor Woerner | 0705556 | 2021-06-10 22:37:08 -0400 | [diff] [blame] | 184 | config SYS_I2C_LPC32XX |
| 185 | bool "LPC32XX I2C driver" |
| 186 | depends on ARCH_LPC32XX |
| 187 | help |
| 188 | Enable support for the LPC32xx I2C driver. |
| 189 | |
Beniamino Galvani | f8d9ca1 | 2017-10-29 10:09:00 +0100 | [diff] [blame] | 190 | config SYS_I2C_MESON |
| 191 | bool "Amlogic Meson I2C driver" |
| 192 | depends on DM_I2C && ARCH_MESON |
| 193 | help |
Beniamino Galvani | 4ecbb8b | 2017-11-26 17:40:54 +0100 | [diff] [blame] | 194 | Add support for the I2C controller available in Amlogic Meson |
| 195 | SoCs. The controller supports programmable bus speed including |
| 196 | standard (100kbits/s) and fast (400kbit/s) speed and allows the |
| 197 | software to define a flexible format of the bit streams. It has an |
| 198 | internal buffer holding up to 8 bytes for transfers and supports |
| 199 | both 7-bit and 10-bit addresses. |
Beniamino Galvani | f8d9ca1 | 2017-10-29 10:09:00 +0100 | [diff] [blame] | 200 | |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 201 | config SYS_I2C_MXC |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 202 | bool "NXP MXC I2C driver" |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 203 | help |
Chris Packham | 7475145 | 2019-01-13 22:13:25 +1300 | [diff] [blame] | 204 | Add support for the NXP I2C driver. This supports up to four bus |
| 205 | channels and operating on standard mode up to 100 kbits/s and fast |
| 206 | mode up to 400 kbits/s. |
Jagan Teki | 72c8c10 | 2016-12-06 00:00:57 +0100 | [diff] [blame] | 207 | |
Trent Piepho | ca0a8f3 | 2019-05-08 23:30:06 +0000 | [diff] [blame] | 208 | # These settings are not used with DM_I2C, however SPL doesn't use |
| 209 | # DM_I2C even if DM_I2C is enabled, and so might use these settings even |
| 210 | # when main u-boot does not! |
| 211 | if SYS_I2C_MXC && (!DM_I2C || SPL) |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 212 | config SYS_I2C_MXC_I2C1 |
| 213 | bool "NXP MXC I2C1" |
| 214 | help |
| 215 | Add support for NXP MXC I2C Controller 1. |
| 216 | Required for SoCs which have I2C MXC controller 1 eg LS1088A, LS2080A |
| 217 | |
| 218 | config SYS_I2C_MXC_I2C2 |
| 219 | bool "NXP MXC I2C2" |
| 220 | help |
| 221 | Add support for NXP MXC I2C Controller 2. |
| 222 | Required for SoCs which have I2C MXC controller 2 eg LS1088A, LS2080A |
| 223 | |
| 224 | config SYS_I2C_MXC_I2C3 |
| 225 | bool "NXP MXC I2C3" |
| 226 | help |
| 227 | Add support for NXP MXC I2C Controller 3. |
| 228 | Required for SoCs which have I2C MXC controller 3 eg LS1088A, LS2080A |
| 229 | |
| 230 | config SYS_I2C_MXC_I2C4 |
| 231 | bool "NXP MXC I2C4" |
| 232 | help |
| 233 | Add support for NXP MXC I2C Controller 4. |
| 234 | Required for SoCs which have I2C MXC controller 4 eg LS1088A, LS2080A |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 235 | |
| 236 | config SYS_I2C_MXC_I2C5 |
| 237 | bool "NXP MXC I2C5" |
| 238 | help |
| 239 | Add support for NXP MXC I2C Controller 5. |
| 240 | Required for SoCs which have I2C MXC controller 5 eg LX2160A |
| 241 | |
| 242 | config SYS_I2C_MXC_I2C6 |
| 243 | bool "NXP MXC I2C6" |
| 244 | help |
| 245 | Add support for NXP MXC I2C Controller 6. |
| 246 | Required for SoCs which have I2C MXC controller 6 eg LX2160A |
| 247 | |
| 248 | config SYS_I2C_MXC_I2C7 |
| 249 | bool "NXP MXC I2C7" |
| 250 | help |
| 251 | Add support for NXP MXC I2C Controller 7. |
| 252 | Required for SoCs which have I2C MXC controller 7 eg LX2160A |
| 253 | |
| 254 | config SYS_I2C_MXC_I2C8 |
| 255 | bool "NXP MXC I2C8" |
| 256 | help |
| 257 | Add support for NXP MXC I2C Controller 8. |
| 258 | Required for SoCs which have I2C MXC controller 8 eg LX2160A |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 259 | endif |
| 260 | |
| 261 | if SYS_I2C_MXC_I2C1 |
| 262 | config SYS_MXC_I2C1_SPEED |
| 263 | int "I2C Channel 1 speed" |
Tom Rini | 2ce7b65 | 2021-02-09 08:03:10 -0500 | [diff] [blame] | 264 | default 40000000 if TARGET_LS2080A_EMU |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 265 | default 100000 |
| 266 | help |
| 267 | MXC I2C Channel 1 speed |
| 268 | |
| 269 | config SYS_MXC_I2C1_SLAVE |
| 270 | int "I2C1 Slave" |
| 271 | default 0 |
| 272 | help |
| 273 | MXC I2C1 Slave |
| 274 | endif |
| 275 | |
| 276 | if SYS_I2C_MXC_I2C2 |
| 277 | config SYS_MXC_I2C2_SPEED |
| 278 | int "I2C Channel 2 speed" |
Tom Rini | 2ce7b65 | 2021-02-09 08:03:10 -0500 | [diff] [blame] | 279 | default 40000000 if TARGET_LS2080A_EMU |
Sriram Dash | 942ecc8 | 2018-02-06 11:26:30 +0530 | [diff] [blame] | 280 | default 100000 |
| 281 | help |
| 282 | MXC I2C Channel 2 speed |
| 283 | |
| 284 | config SYS_MXC_I2C2_SLAVE |
| 285 | int "I2C2 Slave" |
| 286 | default 0 |
| 287 | help |
| 288 | MXC I2C2 Slave |
| 289 | endif |
| 290 | |
| 291 | if SYS_I2C_MXC_I2C3 |
| 292 | config SYS_MXC_I2C3_SPEED |
| 293 | int "I2C Channel 3 speed" |
| 294 | default 100000 |
| 295 | help |
| 296 | MXC I2C Channel 3 speed |
| 297 | |
| 298 | config SYS_MXC_I2C3_SLAVE |
| 299 | int "I2C3 Slave" |
| 300 | default 0 |
| 301 | help |
| 302 | MXC I2C3 Slave |
| 303 | endif |
| 304 | |
| 305 | if SYS_I2C_MXC_I2C4 |
| 306 | config SYS_MXC_I2C4_SPEED |
| 307 | int "I2C Channel 4 speed" |
| 308 | default 100000 |
| 309 | help |
| 310 | MXC I2C Channel 4 speed |
| 311 | |
| 312 | config SYS_MXC_I2C4_SLAVE |
| 313 | int "I2C4 Slave" |
| 314 | default 0 |
| 315 | help |
| 316 | MXC I2C4 Slave |
| 317 | endif |
| 318 | |
Sriram Dash | fa45219 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 319 | if SYS_I2C_MXC_I2C5 |
| 320 | config SYS_MXC_I2C5_SPEED |
| 321 | int "I2C Channel 5 speed" |
| 322 | default 100000 |
| 323 | help |
| 324 | MXC I2C Channel 5 speed |
| 325 | |
| 326 | config SYS_MXC_I2C5_SLAVE |
| 327 | int "I2C5 Slave" |
| 328 | default 0 |
| 329 | help |
| 330 | MXC I2C5 Slave |
| 331 | endif |
| 332 | |
| 333 | if SYS_I2C_MXC_I2C6 |
| 334 | config SYS_MXC_I2C6_SPEED |
| 335 | int "I2C Channel 6 speed" |
| 336 | default 100000 |
| 337 | help |
| 338 | MXC I2C Channel 6 speed |
| 339 | |
| 340 | config SYS_MXC_I2C6_SLAVE |
| 341 | int "I2C6 Slave" |
| 342 | default 0 |
| 343 | help |
| 344 | MXC I2C6 Slave |
| 345 | endif |
| 346 | |
| 347 | if SYS_I2C_MXC_I2C7 |
| 348 | config SYS_MXC_I2C7_SPEED |
| 349 | int "I2C Channel 7 speed" |
| 350 | default 100000 |
| 351 | help |
| 352 | MXC I2C Channel 7 speed |
| 353 | |
| 354 | config SYS_MXC_I2C7_SLAVE |
| 355 | int "I2C7 Slave" |
| 356 | default 0 |
| 357 | help |
| 358 | MXC I2C7 Slave |
| 359 | endif |
| 360 | |
| 361 | if SYS_I2C_MXC_I2C8 |
| 362 | config SYS_MXC_I2C8_SPEED |
| 363 | int "I2C Channel 8 speed" |
| 364 | default 100000 |
| 365 | help |
| 366 | MXC I2C Channel 8 speed |
| 367 | |
| 368 | config SYS_MXC_I2C8_SLAVE |
| 369 | int "I2C8 Slave" |
| 370 | default 0 |
| 371 | help |
| 372 | MXC I2C8 Slave |
| 373 | endif |
| 374 | |
Stefan Bosch | c25e9e0 | 2020-07-10 19:07:28 +0200 | [diff] [blame] | 375 | config SYS_I2C_NEXELL |
| 376 | bool "Nexell I2C driver" |
| 377 | depends on DM_I2C |
| 378 | help |
| 379 | Add support for the Nexell I2C driver. This is used with various |
| 380 | Nexell parts such as S5Pxx18 series SoCs. All chips |
| 381 | have several I2C ports and all are provided, controlled by the |
| 382 | device tree. |
| 383 | |
Pragnesh Patel | b2d4cbe | 2020-11-14 14:42:34 +0530 | [diff] [blame] | 384 | config SYS_I2C_OCORES |
| 385 | bool "ocores I2C driver" |
| 386 | depends on DM_I2C |
| 387 | help |
| 388 | Add support for ocores I2C controller. For details see |
| 389 | https://opencores.org/projects/i2c |
| 390 | |
Adam Ford | daa0f05 | 2017-08-07 13:11:34 -0500 | [diff] [blame] | 391 | config SYS_I2C_OMAP24XX |
| 392 | bool "TI OMAP2+ I2C driver" |
Vignesh R | 14106bc | 2019-06-04 18:08:11 -0500 | [diff] [blame] | 393 | depends on ARCH_OMAP2PLUS || ARCH_K3 |
Adam Ford | daa0f05 | 2017-08-07 13:11:34 -0500 | [diff] [blame] | 394 | help |
| 395 | Add support for the OMAP2+ I2C driver. |
| 396 | |
Adam Ford | 11d2e98 | 2018-01-24 15:21:21 -0600 | [diff] [blame] | 397 | if SYS_I2C_OMAP24XX |
| 398 | config SYS_OMAP24_I2C_SLAVE |
| 399 | int "I2C Slave addr channel 0" |
| 400 | default 1 |
| 401 | help |
| 402 | OMAP24xx I2C Slave address channel 0 |
| 403 | |
| 404 | config SYS_OMAP24_I2C_SPEED |
| 405 | int "I2C Slave channel 0 speed" |
| 406 | default 100000 |
| 407 | help |
| 408 | OMAP24xx Slave speed channel 0 |
| 409 | endif |
| 410 | |
Marek Vasut | a06a0ac | 2018-04-21 18:57:28 +0200 | [diff] [blame] | 411 | config SYS_I2C_RCAR_I2C |
| 412 | bool "Renesas RCar I2C driver" |
| 413 | depends on (RCAR_GEN3 || RCAR_GEN2) && DM_I2C |
| 414 | help |
| 415 | Support for Renesas RCar I2C controller. |
| 416 | |
Marek Vasut | 9e75ea4 | 2017-11-28 08:02:27 +0100 | [diff] [blame] | 417 | config SYS_I2C_RCAR_IIC |
| 418 | bool "Renesas RCar Gen3 IIC driver" |
Marek Vasut | f51155e | 2018-02-17 02:17:40 +0100 | [diff] [blame] | 419 | depends on (RCAR_GEN3 || RCAR_GEN2) && DM_I2C |
Marek Vasut | 9e75ea4 | 2017-11-28 08:02:27 +0100 | [diff] [blame] | 420 | help |
| 421 | Support for Renesas RCar Gen3 IIC controller. |
| 422 | |
Simon Glass | 3437469 | 2015-08-30 16:55:39 -0600 | [diff] [blame] | 423 | config SYS_I2C_ROCKCHIP |
| 424 | bool "Rockchip I2C driver" |
| 425 | depends on DM_I2C |
| 426 | help |
| 427 | Add support for the Rockchip I2C driver. This is used with various |
| 428 | Rockchip parts such as RK3126, RK3128, RK3036 and RK3288. All chips |
Chris Packham | 7475145 | 2019-01-13 22:13:25 +1300 | [diff] [blame] | 429 | have several I2C ports and all are provided, controlled by the |
Simon Glass | 3437469 | 2015-08-30 16:55:39 -0600 | [diff] [blame] | 430 | device tree. |
| 431 | |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 432 | config SYS_I2C_SANDBOX |
| 433 | bool "Sandbox I2C driver" |
| 434 | depends on SANDBOX && DM_I2C |
| 435 | help |
| 436 | Enable I2C support for sandbox. This is an emulation of a real I2C |
| 437 | bus. Devices can be attached to the bus using the device tree |
Masahiro Yamada | c77c7db | 2017-02-11 12:39:55 +0900 | [diff] [blame] | 438 | which specifies the driver to use. See sandbox.dts as an example. |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 439 | |
Suneel Garapati | 5c2c3e8 | 2020-05-26 14:13:07 +0200 | [diff] [blame] | 440 | config SYS_I2C_OCTEON |
| 441 | bool "Octeon II/III/TX/TX2 I2C driver" |
| 442 | depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2) && DM_I2C |
| 443 | default y |
| 444 | help |
| 445 | Add support for the Marvell Octeon I2C driver. This is used with |
| 446 | various Octeon parts such as Octeon II/III and OcteonTX/TX2. All |
| 447 | chips have several I2C ports and all are provided, controlled by |
| 448 | the device tree. |
| 449 | |
Jaehoon Chung | 1d61ad9 | 2017-01-09 14:47:52 +0900 | [diff] [blame] | 450 | config SYS_I2C_S3C24X0 |
| 451 | bool "Samsung I2C driver" |
Tom Rini | 0283da4 | 2021-08-17 17:59:42 -0400 | [diff] [blame] | 452 | depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) && DM_I2C |
Jaehoon Chung | 1d61ad9 | 2017-01-09 14:47:52 +0900 | [diff] [blame] | 453 | help |
| 454 | Support for Samsung I2C controller as Samsung SoCs. |
Simon Glass | 1174aad | 2015-03-06 13:19:04 -0700 | [diff] [blame] | 455 | |
Patrice Chotard | 4fadcaf | 2017-08-09 14:45:27 +0200 | [diff] [blame] | 456 | config SYS_I2C_STM32F7 |
| 457 | bool "STMicroelectronics STM32F7 I2C support" |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 458 | depends on (STM32F7 || STM32H7 || ARCH_STM32MP) && DM_I2C |
Patrice Chotard | 4fadcaf | 2017-08-09 14:45:27 +0200 | [diff] [blame] | 459 | help |
| 460 | Enable this option to add support for STM32 I2C controller |
| 461 | introduced with STM32F7/H7 SoCs. This I2C controller supports : |
| 462 | _ Slave and master modes |
| 463 | _ Multimaster capability |
| 464 | _ Standard-mode (up to 100 kHz) |
| 465 | _ Fast-mode (up to 400 kHz) |
| 466 | _ Fast-mode Plus (up to 1 MHz) |
| 467 | _ 7-bit and 10-bit addressing mode |
| 468 | _ Multiple 7-bit slave addresses (2 addresses, 1 with configurable mask) |
| 469 | _ All 7-bit addresses acknowledge mode |
| 470 | _ General call |
| 471 | _ Programmable setup and hold times |
| 472 | _ Easy to use event management |
| 473 | _ Optional clock stretching |
| 474 | _ Software reset |
| 475 | |
Jassi Brar | 4483fba | 2021-06-04 18:44:48 +0900 | [diff] [blame] | 476 | config SYS_I2C_SYNQUACER |
| 477 | bool "Socionext SynQuacer I2C controller" |
| 478 | depends on ARCH_SYNQUACER && DM_I2C |
| 479 | help |
| 480 | Support for Socionext Synquacer I2C controller. This I2C controller |
| 481 | will be used for RTC and LS-connector on DeveloperBox. |
| 482 | |
Peter Robinson | 02253d4 | 2019-02-20 12:17:26 +0000 | [diff] [blame] | 483 | config SYS_I2C_TEGRA |
| 484 | bool "NVIDIA Tegra internal I2C controller" |
Trevor Woerner | 18138ab | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 485 | depends on ARCH_TEGRA |
Peter Robinson | 02253d4 | 2019-02-20 12:17:26 +0000 | [diff] [blame] | 486 | help |
| 487 | Support for NVIDIA I2C controller available in Tegra SoCs. |
| 488 | |
Masahiro Yamada | 26f820f | 2015-01-13 12:44:36 +0900 | [diff] [blame] | 489 | config SYS_I2C_UNIPHIER |
| 490 | bool "UniPhier I2C driver" |
| 491 | depends on ARCH_UNIPHIER && DM_I2C |
| 492 | default y |
| 493 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 494 | Support for UniPhier I2C controller driver. This I2C controller |
| 495 | is used on PH1-LD4, PH1-sLD8 or older UniPhier SoCs. |
Masahiro Yamada | 238bd0b | 2015-01-13 12:44:37 +0900 | [diff] [blame] | 496 | |
| 497 | config SYS_I2C_UNIPHIER_F |
| 498 | bool "UniPhier FIFO-builtin I2C driver" |
| 499 | depends on ARCH_UNIPHIER && DM_I2C |
| 500 | default y |
| 501 | help |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 502 | Support for UniPhier FIFO-builtin I2C controller driver. |
Masahiro Yamada | 238bd0b | 2015-01-13 12:44:37 +0900 | [diff] [blame] | 503 | This I2C controller is used on PH1-Pro4 or newer UniPhier SoCs. |
Simon Glass | 3d1957f | 2015-08-03 08:19:21 -0600 | [diff] [blame] | 504 | |
Heiko Schocher | e3bc4bb | 2018-10-11 07:26:33 +0200 | [diff] [blame] | 505 | config SYS_I2C_VERSATILE |
| 506 | bool "Arm Ltd Versatile I2C bus driver" |
Tom Rini | c6c26a0 | 2021-02-20 20:05:47 -0500 | [diff] [blame] | 507 | depends on DM_I2C && TARGET_VEXPRESS64_JUNO |
Heiko Schocher | e3bc4bb | 2018-10-11 07:26:33 +0200 | [diff] [blame] | 508 | help |
| 509 | Add support for the Arm Ltd Versatile Express I2C driver. The I2C host |
| 510 | controller is present in the development boards manufactured by Arm Ltd. |
| 511 | |
mario.six@gdsys.cc | 14a6ff2 | 2016-07-21 11:57:10 +0200 | [diff] [blame] | 512 | config SYS_I2C_MVTWSI |
| 513 | bool "Marvell I2C driver" |
| 514 | depends on DM_I2C |
| 515 | help |
| 516 | Support for Marvell I2C controllers as used on the orion5x and |
| 517 | kirkwood SoC families. |
| 518 | |
Stephen Warren | 34f1c9f | 2016-08-08 11:28:27 -0600 | [diff] [blame] | 519 | config TEGRA186_BPMP_I2C |
| 520 | bool "Enable Tegra186 BPMP-based I2C driver" |
| 521 | depends on TEGRA186_BPMP |
| 522 | help |
| 523 | Support for Tegra I2C controllers managed by the BPMP (Boot and |
| 524 | Power Management Processor). On Tegra186, some I2C controllers are |
| 525 | directly controlled by the main CPU, whereas others are controlled |
| 526 | by the BPMP, and can only be accessed by the main CPU via IPC |
| 527 | requests to the BPMP. This driver covers the latter case. |
| 528 | |
Adam Ford | fc760cc | 2017-08-11 06:39:34 -0500 | [diff] [blame] | 529 | config SYS_I2C_BUS_MAX |
| 530 | int "Max I2C busses" |
| 531 | depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_SOCFPGA |
| 532 | default 2 if TI816X |
| 533 | default 3 if OMAP34XX || AM33XX || AM43XX || ARCH_KEYSTONE |
| 534 | default 4 if ARCH_SOCFPGA || OMAP44XX || TI814X |
| 535 | default 5 if OMAP54XX |
| 536 | help |
| 537 | Define the maximum number of available I2C buses. |
| 538 | |
Marek Vasut | ad827a5 | 2018-12-19 12:26:27 +0100 | [diff] [blame] | 539 | config SYS_I2C_XILINX_XIIC |
| 540 | bool "Xilinx AXI I2C driver" |
| 541 | depends on DM_I2C |
| 542 | help |
| 543 | Support for Xilinx AXI I2C controller. |
| 544 | |
Mario Six | 9216421 | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 545 | config SYS_I2C_IHS |
| 546 | bool "gdsys IHS I2C driver" |
| 547 | depends on DM_I2C |
| 548 | help |
| 549 | Support for gdsys IHS I2C driver on FPGA bus. |
| 550 | |
Simon Glass | 3d1957f | 2015-08-03 08:19:21 -0600 | [diff] [blame] | 551 | source "drivers/i2c/muxes/Kconfig" |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 552 | |
Simon Glass | 59e11eb | 2021-07-10 21:14:35 -0600 | [diff] [blame] | 553 | endif |