blob: 87d11b663c3bbb2ca68fcb7c3f4824893126c03e [file] [log] [blame]
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +09001#
2# I2C subsystem configuration
3#
4
5menu "I2C support"
6
Masahiro Yamadacd5cf8e2015-01-13 12:44:35 +09007config DM_I2C
8 bool "Enable Driver Model for I2C drivers"
9 depends on DM
10 help
Przemyslaw Marczake5fa1212015-03-31 18:57:17 +020011 Enable driver model for I2C. The I2C uclass interface: probe, read,
12 write and speed, is implemented with the bus drivers operations,
13 which provide methods for bus setting and data transfer. Each chip
14 device (bus child) info is kept as parent platdata. The interface
Bartosz Golaszewski1e4450c2019-07-29 08:58:00 +020015 is defined in include/i2c.h.
Simon Glasse200ee22015-02-13 12:20:48 -070016
Simon Glass9ad07af2015-08-03 08:19:23 -060017config I2C_CROS_EC_TUNNEL
18 tristate "Chrome OS EC tunnel I2C bus"
19 depends on CROS_EC
20 help
21 This provides an I2C bus that will tunnel i2c commands through to
22 the other side of the Chrome OS EC to the I2C bus connected there.
23 This will work whatever the interface used to talk to the EC (SPI,
24 I2C or LPC). Some Chromebooks use this when the hardware design
25 does not allow direct access to the main PMIC from the AP.
26
Simon Glasseb2cc512015-08-03 08:19:24 -060027config I2C_CROS_EC_LDO
28 bool "Provide access to LDOs on the Chrome OS EC"
29 depends on CROS_EC
30 ---help---
31 On many Chromebooks the main PMIC is inaccessible to the AP. This is
32 often dealt with by using an I2C pass-through interface provided by
33 the EC. On some unfortunate models (e.g. Spring) the pass-through
34 is not available, and an LDO message is available instead. This
35 option enables a driver which provides very basic access to those
36 regulators, via the EC. We implement this as an I2C bus which
37 emulates just the TPS65090 messages we know about. This is done to
38 avoid duplicating the logic in the TPS65090 regulator driver for
39 enabling/disabling an LDO.
Simon Glass9ad07af2015-08-03 08:19:23 -060040
Lukasz Majewski0a556272017-03-21 12:08:25 +010041config I2C_SET_DEFAULT_BUS_NUM
42 bool "Set default I2C bus number"
43 depends on DM_I2C
44 help
45 Set default number of I2C bus to be accessed. This option provides
46 behaviour similar to old (i.e. pre DM) I2C bus driver.
47
48config I2C_DEFAULT_BUS_NUMBER
49 hex "I2C default bus number"
50 depends on I2C_SET_DEFAULT_BUS_NUM
51 default 0x0
52 help
53 Number of default I2C bus to use
54
Przemyslaw Marczakd3aa7e12015-03-31 18:57:18 +020055config DM_I2C_GPIO
56 bool "Enable Driver Model for software emulated I2C bus driver"
57 depends on DM_I2C && DM_GPIO
58 help
59 Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO
60 configuration is given by the device tree. Kernel-style device tree
61 bindings are supported.
62 Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt
63
Songjun Wu26d88282016-06-20 13:22:38 +080064config SYS_I2C_AT91
65 bool "Atmel I2C driver"
66 depends on DM_I2C && ARCH_AT91
67 help
68 Add support for the Atmel I2C driver. A serious problem is that there
69 is no documented way to issue repeated START conditions for more than
70 two messages, as needed to support combined I2C messages. Use the
71 i2c-gpio driver unless your system can cope with this limitation.
72 Binding info: doc/device-tree-bindings/i2c/i2c-at91.txt
73
Rayagonda Kokatanurd5dc36f2020-04-08 11:12:27 +053074config SYS_I2C_IPROC
75 bool "Broadcom I2C driver"
76 depends on DM_I2C
77 help
78 Broadcom I2C driver.
79 Add support for Broadcom I2C driver.
80 Say yes here to to enable the Broadco I2C driver.
81
mario.six@gdsys.cc349686c2016-04-25 08:31:09 +020082config SYS_I2C_FSL
83 bool "Freescale I2C bus driver"
84 depends on DM_I2C
85 help
86 Add support for Freescale I2C busses as used on MPC8240, MPC8245, and
87 MPC85xx processors.
88
Moritz Fischer0075dac2015-12-28 09:47:11 -080089config SYS_I2C_CADENCE
90 tristate "Cadence I2C Controller"
91 depends on DM_I2C && (ARCH_ZYNQ || ARM64)
92 help
93 Say yes here to select Cadence I2C Host Controller. This controller is
94 e.g. used by Xilinx Zynq.
95
Arthur Life661ba2020-06-01 12:56:31 -070096config SYS_I2C_CA
97 tristate "Cortina-Access I2C Controller"
98 depends on DM_I2C && CORTINA_PLATFORM
99 default n
100 help
101 Add support for the Cortina Access I2C host controller.
102 Say yes here to select Cortina-Access I2C Host Controller.
103
Adam Forddecc8952018-08-10 05:05:22 -0500104config SYS_I2C_DAVINCI
105 bool "Davinci I2C Controller"
106 depends on (ARCH_KEYSTONE || ARCH_DAVINCI)
107 help
108 Say yes here to add support for Davinci and Keystone I2C controller
109
Stefan Roeseb71955f2016-04-28 09:47:17 +0200110config SYS_I2C_DW
111 bool "Designware I2C Controller"
112 default n
113 help
114 Say yes here to select the Designware I2C Host Controller. This
115 controller is used in various SoCs, e.g. the ST SPEAr, Altera
116 SoCFPGA, Synopsys ARC700 and some Intel x86 SoCs.
117
Stefan Roese38fe7dc2016-04-28 09:47:19 +0200118config SYS_I2C_DW_ENABLE_STATUS_UNSUPPORTED
119 bool "DW I2C Enable Status Register not supported"
120 depends on SYS_I2C_DW && (TARGET_SPEAR300 || TARGET_SPEAR310 || \
121 TARGET_SPEAR320 || TARGET_SPEAR600 || TARGET_X600)
122 default y
123 help
124 Some versions of the Designware I2C controller do not support the
125 enable status register. This config option can be enabled in such
126 cases.
127
maxims@google.com7f613312017-04-17 12:00:30 -0700128config SYS_I2C_ASPEED
129 bool "Aspeed I2C Controller"
130 depends on DM_I2C && ARCH_ASPEED
131 help
132 Say yes here to select Aspeed I2C Host Controller. The driver
133 supports AST2500 and AST2400 controllers, but is very limited.
134 Only single master mode is supported and only byte-by-byte
135 synchronous reads and writes are supported, no Pool Buffers or DMA.
136
Simon Glass5e66fdc2016-01-17 16:11:44 -0700137config SYS_I2C_INTEL
138 bool "Intel I2C/SMBUS driver"
139 depends on DM_I2C
140 help
141 Add support for the Intel SMBUS driver. So far this driver is just
142 a stub which perhaps some basic init. There is no implementation of
143 the I2C API meaning that any I2C operations will immediately fail
144 for now.
145
Peng Fand684adb2017-02-24 09:54:18 +0800146config SYS_I2C_IMX_LPI2C
147 bool "NXP i.MX LPI2C driver"
Peng Fand684adb2017-02-24 09:54:18 +0800148 help
149 Add support for the NXP i.MX LPI2C driver.
150
Beniamino Galvanid5b199c2017-10-29 10:09:00 +0100151config SYS_I2C_MESON
152 bool "Amlogic Meson I2C driver"
153 depends on DM_I2C && ARCH_MESON
154 help
Beniamino Galvani83b153d2017-11-26 17:40:54 +0100155 Add support for the I2C controller available in Amlogic Meson
156 SoCs. The controller supports programmable bus speed including
157 standard (100kbits/s) and fast (400kbit/s) speed and allows the
158 software to define a flexible format of the bit streams. It has an
159 internal buffer holding up to 8 bytes for transfers and supports
160 both 7-bit and 10-bit addresses.
Beniamino Galvanid5b199c2017-10-29 10:09:00 +0100161
Jagan Teki0aedd7f2016-12-06 00:00:57 +0100162config SYS_I2C_MXC
Sriram Dash7122a0c2018-02-06 11:26:30 +0530163 bool "NXP MXC I2C driver"
Jagan Teki0aedd7f2016-12-06 00:00:57 +0100164 help
Chris Packham94d0d3d2019-01-13 22:13:25 +1300165 Add support for the NXP I2C driver. This supports up to four bus
166 channels and operating on standard mode up to 100 kbits/s and fast
167 mode up to 400 kbits/s.
Jagan Teki0aedd7f2016-12-06 00:00:57 +0100168
Trent Piepho92ebcba2019-05-08 23:30:06 +0000169# These settings are not used with DM_I2C, however SPL doesn't use
170# DM_I2C even if DM_I2C is enabled, and so might use these settings even
171# when main u-boot does not!
172if SYS_I2C_MXC && (!DM_I2C || SPL)
Sriram Dash7122a0c2018-02-06 11:26:30 +0530173config SYS_I2C_MXC_I2C1
174 bool "NXP MXC I2C1"
175 help
176 Add support for NXP MXC I2C Controller 1.
177 Required for SoCs which have I2C MXC controller 1 eg LS1088A, LS2080A
178
179config SYS_I2C_MXC_I2C2
180 bool "NXP MXC I2C2"
181 help
182 Add support for NXP MXC I2C Controller 2.
183 Required for SoCs which have I2C MXC controller 2 eg LS1088A, LS2080A
184
185config SYS_I2C_MXC_I2C3
186 bool "NXP MXC I2C3"
187 help
188 Add support for NXP MXC I2C Controller 3.
189 Required for SoCs which have I2C MXC controller 3 eg LS1088A, LS2080A
190
191config SYS_I2C_MXC_I2C4
192 bool "NXP MXC I2C4"
193 help
194 Add support for NXP MXC I2C Controller 4.
195 Required for SoCs which have I2C MXC controller 4 eg LS1088A, LS2080A
Sriram Dasha64aa192018-02-06 11:26:31 +0530196
197config SYS_I2C_MXC_I2C5
198 bool "NXP MXC I2C5"
199 help
200 Add support for NXP MXC I2C Controller 5.
201 Required for SoCs which have I2C MXC controller 5 eg LX2160A
202
203config SYS_I2C_MXC_I2C6
204 bool "NXP MXC I2C6"
205 help
206 Add support for NXP MXC I2C Controller 6.
207 Required for SoCs which have I2C MXC controller 6 eg LX2160A
208
209config SYS_I2C_MXC_I2C7
210 bool "NXP MXC I2C7"
211 help
212 Add support for NXP MXC I2C Controller 7.
213 Required for SoCs which have I2C MXC controller 7 eg LX2160A
214
215config SYS_I2C_MXC_I2C8
216 bool "NXP MXC I2C8"
217 help
218 Add support for NXP MXC I2C Controller 8.
219 Required for SoCs which have I2C MXC controller 8 eg LX2160A
Sriram Dash7122a0c2018-02-06 11:26:30 +0530220endif
221
222if SYS_I2C_MXC_I2C1
223config SYS_MXC_I2C1_SPEED
224 int "I2C Channel 1 speed"
225 default 40000000 if TARGET_LS2080A_SIMU || TARGET_LS2080A_EMU
226 default 100000
227 help
228 MXC I2C Channel 1 speed
229
230config SYS_MXC_I2C1_SLAVE
231 int "I2C1 Slave"
232 default 0
233 help
234 MXC I2C1 Slave
235endif
236
237if SYS_I2C_MXC_I2C2
238config SYS_MXC_I2C2_SPEED
239 int "I2C Channel 2 speed"
240 default 40000000 if TARGET_LS2080A_SIMU || TARGET_LS2080A_EMU
241 default 100000
242 help
243 MXC I2C Channel 2 speed
244
245config SYS_MXC_I2C2_SLAVE
246 int "I2C2 Slave"
247 default 0
248 help
249 MXC I2C2 Slave
250endif
251
252if SYS_I2C_MXC_I2C3
253config SYS_MXC_I2C3_SPEED
254 int "I2C Channel 3 speed"
255 default 100000
256 help
257 MXC I2C Channel 3 speed
258
259config SYS_MXC_I2C3_SLAVE
260 int "I2C3 Slave"
261 default 0
262 help
263 MXC I2C3 Slave
264endif
265
266if SYS_I2C_MXC_I2C4
267config SYS_MXC_I2C4_SPEED
268 int "I2C Channel 4 speed"
269 default 100000
270 help
271 MXC I2C Channel 4 speed
272
273config SYS_MXC_I2C4_SLAVE
274 int "I2C4 Slave"
275 default 0
276 help
277 MXC I2C4 Slave
278endif
279
Sriram Dasha64aa192018-02-06 11:26:31 +0530280if SYS_I2C_MXC_I2C5
281config SYS_MXC_I2C5_SPEED
282 int "I2C Channel 5 speed"
283 default 100000
284 help
285 MXC I2C Channel 5 speed
286
287config SYS_MXC_I2C5_SLAVE
288 int "I2C5 Slave"
289 default 0
290 help
291 MXC I2C5 Slave
292endif
293
294if SYS_I2C_MXC_I2C6
295config SYS_MXC_I2C6_SPEED
296 int "I2C Channel 6 speed"
297 default 100000
298 help
299 MXC I2C Channel 6 speed
300
301config SYS_MXC_I2C6_SLAVE
302 int "I2C6 Slave"
303 default 0
304 help
305 MXC I2C6 Slave
306endif
307
308if SYS_I2C_MXC_I2C7
309config SYS_MXC_I2C7_SPEED
310 int "I2C Channel 7 speed"
311 default 100000
312 help
313 MXC I2C Channel 7 speed
314
315config SYS_MXC_I2C7_SLAVE
316 int "I2C7 Slave"
317 default 0
318 help
319 MXC I2C7 Slave
320endif
321
322if SYS_I2C_MXC_I2C8
323config SYS_MXC_I2C8_SPEED
324 int "I2C Channel 8 speed"
325 default 100000
326 help
327 MXC I2C Channel 8 speed
328
329config SYS_MXC_I2C8_SLAVE
330 int "I2C8 Slave"
331 default 0
332 help
333 MXC I2C8 Slave
334endif
335
Adam Ford85901162017-08-07 13:11:34 -0500336config SYS_I2C_OMAP24XX
337 bool "TI OMAP2+ I2C driver"
Vignesh R64d4f552019-06-04 18:08:11 -0500338 depends on ARCH_OMAP2PLUS || ARCH_K3
Adam Ford85901162017-08-07 13:11:34 -0500339 help
340 Add support for the OMAP2+ I2C driver.
341
Adam Forded3b0822018-01-24 15:21:21 -0600342if SYS_I2C_OMAP24XX
343config SYS_OMAP24_I2C_SLAVE
344 int "I2C Slave addr channel 0"
345 default 1
346 help
347 OMAP24xx I2C Slave address channel 0
348
349config SYS_OMAP24_I2C_SPEED
350 int "I2C Slave channel 0 speed"
351 default 100000
352 help
353 OMAP24xx Slave speed channel 0
354endif
355
Marek Vasut27165962018-04-21 18:57:28 +0200356config SYS_I2C_RCAR_I2C
357 bool "Renesas RCar I2C driver"
358 depends on (RCAR_GEN3 || RCAR_GEN2) && DM_I2C
359 help
360 Support for Renesas RCar I2C controller.
361
Marek Vasut125d8df2017-11-28 08:02:27 +0100362config SYS_I2C_RCAR_IIC
363 bool "Renesas RCar Gen3 IIC driver"
Marek Vasut4bc57a32018-02-17 02:17:40 +0100364 depends on (RCAR_GEN3 || RCAR_GEN2) && DM_I2C
Marek Vasut125d8df2017-11-28 08:02:27 +0100365 help
366 Support for Renesas RCar Gen3 IIC controller.
367
Simon Glass3595f952015-08-30 16:55:39 -0600368config SYS_I2C_ROCKCHIP
369 bool "Rockchip I2C driver"
370 depends on DM_I2C
371 help
372 Add support for the Rockchip I2C driver. This is used with various
373 Rockchip parts such as RK3126, RK3128, RK3036 and RK3288. All chips
Chris Packham94d0d3d2019-01-13 22:13:25 +1300374 have several I2C ports and all are provided, controlled by the
Simon Glass3595f952015-08-30 16:55:39 -0600375 device tree.
376
Simon Glass39bc3be2015-03-06 13:19:04 -0700377config SYS_I2C_SANDBOX
378 bool "Sandbox I2C driver"
379 depends on SANDBOX && DM_I2C
380 help
381 Enable I2C support for sandbox. This is an emulation of a real I2C
382 bus. Devices can be attached to the bus using the device tree
Masahiro Yamada8d8371d2017-02-11 12:39:55 +0900383 which specifies the driver to use. See sandbox.dts as an example.
Simon Glass39bc3be2015-03-06 13:19:04 -0700384
Suneel Garapatic6baea22020-05-26 14:13:07 +0200385config SYS_I2C_OCTEON
386 bool "Octeon II/III/TX/TX2 I2C driver"
387 depends on (ARCH_OCTEON || ARCH_OCTEONTX || ARCH_OCTEONTX2) && DM_I2C
388 default y
389 help
390 Add support for the Marvell Octeon I2C driver. This is used with
391 various Octeon parts such as Octeon II/III and OcteonTX/TX2. All
392 chips have several I2C ports and all are provided, controlled by
393 the device tree.
394
Jaehoon Chungf7e6a032017-01-09 14:47:52 +0900395config SYS_I2C_S3C24X0
396 bool "Samsung I2C driver"
397 depends on ARCH_EXYNOS4 && DM_I2C
398 help
399 Support for Samsung I2C controller as Samsung SoCs.
Simon Glass39bc3be2015-03-06 13:19:04 -0700400
Patrice Chotardebf442d2017-08-09 14:45:27 +0200401config SYS_I2C_STM32F7
402 bool "STMicroelectronics STM32F7 I2C support"
Patrick Delaunay85b53972018-03-12 10:46:10 +0100403 depends on (STM32F7 || STM32H7 || ARCH_STM32MP) && DM_I2C
Patrice Chotardebf442d2017-08-09 14:45:27 +0200404 help
405 Enable this option to add support for STM32 I2C controller
406 introduced with STM32F7/H7 SoCs. This I2C controller supports :
407 _ Slave and master modes
408 _ Multimaster capability
409 _ Standard-mode (up to 100 kHz)
410 _ Fast-mode (up to 400 kHz)
411 _ Fast-mode Plus (up to 1 MHz)
412 _ 7-bit and 10-bit addressing mode
413 _ Multiple 7-bit slave addresses (2 addresses, 1 with configurable mask)
414 _ All 7-bit addresses acknowledge mode
415 _ General call
416 _ Programmable setup and hold times
417 _ Easy to use event management
418 _ Optional clock stretching
419 _ Software reset
420
Peter Robinson12d37d82019-02-20 12:17:26 +0000421config SYS_I2C_TEGRA
422 bool "NVIDIA Tegra internal I2C controller"
Trevor Woerner513f6402020-05-06 08:02:41 -0400423 depends on ARCH_TEGRA
Peter Robinson12d37d82019-02-20 12:17:26 +0000424 help
425 Support for NVIDIA I2C controller available in Tegra SoCs.
426
Masahiro Yamada96a42ed2015-01-13 12:44:36 +0900427config SYS_I2C_UNIPHIER
428 bool "UniPhier I2C driver"
429 depends on ARCH_UNIPHIER && DM_I2C
430 default y
431 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900432 Support for UniPhier I2C controller driver. This I2C controller
433 is used on PH1-LD4, PH1-sLD8 or older UniPhier SoCs.
Masahiro Yamada4e82e5e2015-01-13 12:44:37 +0900434
435config SYS_I2C_UNIPHIER_F
436 bool "UniPhier FIFO-builtin I2C driver"
437 depends on ARCH_UNIPHIER && DM_I2C
438 default y
439 help
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900440 Support for UniPhier FIFO-builtin I2C controller driver.
Masahiro Yamada4e82e5e2015-01-13 12:44:37 +0900441 This I2C controller is used on PH1-Pro4 or newer UniPhier SoCs.
Simon Glass2a80c402015-08-03 08:19:21 -0600442
Heiko Schochera37c1962018-10-11 07:26:33 +0200443config SYS_I2C_VERSATILE
444 bool "Arm Ltd Versatile I2C bus driver"
445 depends on DM_I2C && (TARGET_VEXPRESS_CA15_TC2 || TARGET_VEXPRESS64_JUNO)
446 help
447 Add support for the Arm Ltd Versatile Express I2C driver. The I2C host
448 controller is present in the development boards manufactured by Arm Ltd.
449
mario.six@gdsys.cc355a1272016-07-21 11:57:10 +0200450config SYS_I2C_MVTWSI
451 bool "Marvell I2C driver"
452 depends on DM_I2C
453 help
454 Support for Marvell I2C controllers as used on the orion5x and
455 kirkwood SoC families.
456
Stephen Warren67a83482016-08-08 11:28:27 -0600457config TEGRA186_BPMP_I2C
458 bool "Enable Tegra186 BPMP-based I2C driver"
459 depends on TEGRA186_BPMP
460 help
461 Support for Tegra I2C controllers managed by the BPMP (Boot and
462 Power Management Processor). On Tegra186, some I2C controllers are
463 directly controlled by the main CPU, whereas others are controlled
464 by the BPMP, and can only be accessed by the main CPU via IPC
465 requests to the BPMP. This driver covers the latter case.
466
Adam Fordfa1dd3d2017-08-11 06:39:34 -0500467config SYS_I2C_BUS_MAX
468 int "Max I2C busses"
469 depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_SOCFPGA
470 default 2 if TI816X
471 default 3 if OMAP34XX || AM33XX || AM43XX || ARCH_KEYSTONE
472 default 4 if ARCH_SOCFPGA || OMAP44XX || TI814X
473 default 5 if OMAP54XX
474 help
475 Define the maximum number of available I2C buses.
476
Marek Vasut9de0e2a2018-12-19 12:26:27 +0100477config SYS_I2C_XILINX_XIIC
478 bool "Xilinx AXI I2C driver"
479 depends on DM_I2C
480 help
481 Support for Xilinx AXI I2C controller.
482
Mario Six3bb409c2018-01-15 11:08:11 +0100483config SYS_I2C_IHS
484 bool "gdsys IHS I2C driver"
485 depends on DM_I2C
486 help
487 Support for gdsys IHS I2C driver on FPGA bus.
488
Simon Glass2a80c402015-08-03 08:19:21 -0600489source "drivers/i2c/muxes/Kconfig"
Masahiro Yamadacc85b7b2015-07-26 02:46:26 +0900490
491endmenu