10b11dbf7SMasahiro Yamada# 20b11dbf7SMasahiro Yamada# I2C subsystem configuration 30b11dbf7SMasahiro Yamada# 40b11dbf7SMasahiro Yamada 50b11dbf7SMasahiro Yamadamenu "I2C support" 60b11dbf7SMasahiro Yamada 7b6036bcdSMasahiro Yamadaconfig DM_I2C 8b6036bcdSMasahiro Yamada bool "Enable Driver Model for I2C drivers" 9b6036bcdSMasahiro Yamada depends on DM 10b6036bcdSMasahiro Yamada help 11705fcf4dSPrzemyslaw Marczak Enable driver model for I2C. The I2C uclass interface: probe, read, 12705fcf4dSPrzemyslaw Marczak write and speed, is implemented with the bus drivers operations, 13705fcf4dSPrzemyslaw Marczak which provide methods for bus setting and data transfer. Each chip 14705fcf4dSPrzemyslaw Marczak device (bus child) info is kept as parent platdata. The interface 15705fcf4dSPrzemyslaw Marczak is defined in include/i2c.h. When i2c bus driver supports the i2c 16705fcf4dSPrzemyslaw Marczak uclass, but the device drivers not, then DM_I2C_COMPAT config can 17705fcf4dSPrzemyslaw Marczak be used as compatibility layer. 1826f820f3SMasahiro Yamada 194bba9d3fSSimon Glassconfig DM_I2C_COMPAT 204bba9d3fSSimon Glass bool "Enable I2C compatibility layer" 214bba9d3fSSimon Glass depends on DM 224bba9d3fSSimon Glass help 234bba9d3fSSimon Glass Enable old-style I2C functions for compatibility with existing code. 244bba9d3fSSimon Glass This option can be enabled as a temporary measure to avoid needing 254bba9d3fSSimon Glass to convert all code for a board in a single commit. It should not 264bba9d3fSSimon Glass be enabled for any board in an official release. 274bba9d3fSSimon Glass 28cc456bd7SSimon Glassconfig I2C_CROS_EC_TUNNEL 29cc456bd7SSimon Glass tristate "Chrome OS EC tunnel I2C bus" 30cc456bd7SSimon Glass depends on CROS_EC 31cc456bd7SSimon Glass help 32cc456bd7SSimon Glass This provides an I2C bus that will tunnel i2c commands through to 33cc456bd7SSimon Glass the other side of the Chrome OS EC to the I2C bus connected there. 34cc456bd7SSimon Glass This will work whatever the interface used to talk to the EC (SPI, 35cc456bd7SSimon Glass I2C or LPC). Some Chromebooks use this when the hardware design 36cc456bd7SSimon Glass does not allow direct access to the main PMIC from the AP. 37cc456bd7SSimon Glass 38f48eaf01SSimon Glassconfig I2C_CROS_EC_LDO 39f48eaf01SSimon Glass bool "Provide access to LDOs on the Chrome OS EC" 40f48eaf01SSimon Glass depends on CROS_EC 41f48eaf01SSimon Glass ---help--- 42f48eaf01SSimon Glass On many Chromebooks the main PMIC is inaccessible to the AP. This is 43f48eaf01SSimon Glass often dealt with by using an I2C pass-through interface provided by 44f48eaf01SSimon Glass the EC. On some unfortunate models (e.g. Spring) the pass-through 45f48eaf01SSimon Glass is not available, and an LDO message is available instead. This 46f48eaf01SSimon Glass option enables a driver which provides very basic access to those 47f48eaf01SSimon Glass regulators, via the EC. We implement this as an I2C bus which 48f48eaf01SSimon Glass emulates just the TPS65090 messages we know about. This is done to 49f48eaf01SSimon Glass avoid duplicating the logic in the TPS65090 regulator driver for 50f48eaf01SSimon Glass enabling/disabling an LDO. 51cc456bd7SSimon Glass 52c54473cbSPrzemyslaw Marczakconfig DM_I2C_GPIO 53c54473cbSPrzemyslaw Marczak bool "Enable Driver Model for software emulated I2C bus driver" 54c54473cbSPrzemyslaw Marczak depends on DM_I2C && DM_GPIO 55c54473cbSPrzemyslaw Marczak help 56c54473cbSPrzemyslaw Marczak Enable the i2c bus driver emulation by using the GPIOs. The bus GPIO 57c54473cbSPrzemyslaw Marczak configuration is given by the device tree. Kernel-style device tree 58c54473cbSPrzemyslaw Marczak bindings are supported. 59c54473cbSPrzemyslaw Marczak Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt 60c54473cbSPrzemyslaw Marczak 61dbc82ce3Smario.six@gdsys.ccconfig SYS_I2C_FSL 62dbc82ce3Smario.six@gdsys.cc bool "Freescale I2C bus driver" 63dbc82ce3Smario.six@gdsys.cc depends on DM_I2C 64dbc82ce3Smario.six@gdsys.cc help 65dbc82ce3Smario.six@gdsys.cc Add support for Freescale I2C busses as used on MPC8240, MPC8245, and 66dbc82ce3Smario.six@gdsys.cc MPC85xx processors. 67dbc82ce3Smario.six@gdsys.cc 68fdec2d21SMoritz Fischerconfig SYS_I2C_CADENCE 69fdec2d21SMoritz Fischer tristate "Cadence I2C Controller" 70fdec2d21SMoritz Fischer depends on DM_I2C && (ARCH_ZYNQ || ARM64) 71fdec2d21SMoritz Fischer help 72fdec2d21SMoritz Fischer Say yes here to select Cadence I2C Host Controller. This controller is 73fdec2d21SMoritz Fischer e.g. used by Xilinx Zynq. 74fdec2d21SMoritz Fischer 75e32d0db7SStefan Roeseconfig SYS_I2C_DW 76e32d0db7SStefan Roese bool "Designware I2C Controller" 77e32d0db7SStefan Roese default n 78e32d0db7SStefan Roese help 79e32d0db7SStefan Roese Say yes here to select the Designware I2C Host Controller. This 80e32d0db7SStefan Roese controller is used in various SoCs, e.g. the ST SPEAr, Altera 81e32d0db7SStefan Roese SoCFPGA, Synopsys ARC700 and some Intel x86 SoCs. 82e32d0db7SStefan Roese 833a370528SStefan Roeseconfig SYS_I2C_DW_ENABLE_STATUS_UNSUPPORTED 843a370528SStefan Roese bool "DW I2C Enable Status Register not supported" 853a370528SStefan Roese depends on SYS_I2C_DW && (TARGET_SPEAR300 || TARGET_SPEAR310 || \ 863a370528SStefan Roese TARGET_SPEAR320 || TARGET_SPEAR600 || TARGET_X600) 873a370528SStefan Roese default y 883a370528SStefan Roese help 893a370528SStefan Roese Some versions of the Designware I2C controller do not support the 903a370528SStefan Roese enable status register. This config option can be enabled in such 913a370528SStefan Roese cases. 923a370528SStefan Roese 93abb0b01eSSimon Glassconfig SYS_I2C_INTEL 94abb0b01eSSimon Glass bool "Intel I2C/SMBUS driver" 95abb0b01eSSimon Glass depends on DM_I2C 96abb0b01eSSimon Glass help 97abb0b01eSSimon Glass Add support for the Intel SMBUS driver. So far this driver is just 98abb0b01eSSimon Glass a stub which perhaps some basic init. There is no implementation of 99abb0b01eSSimon Glass the I2C API meaning that any I2C operations will immediately fail 100abb0b01eSSimon Glass for now. 101abb0b01eSSimon Glass 10234374699SSimon Glassconfig SYS_I2C_ROCKCHIP 10334374699SSimon Glass bool "Rockchip I2C driver" 10434374699SSimon Glass depends on DM_I2C 10534374699SSimon Glass help 10634374699SSimon Glass Add support for the Rockchip I2C driver. This is used with various 10734374699SSimon Glass Rockchip parts such as RK3126, RK3128, RK3036 and RK3288. All chips 10834374699SSimon Glass have several I2C ports and all are provided, controled by the 10934374699SSimon Glass device tree. 11034374699SSimon Glass 1111174aadaSSimon Glassconfig SYS_I2C_SANDBOX 1121174aadaSSimon Glass bool "Sandbox I2C driver" 1131174aadaSSimon Glass depends on SANDBOX && DM_I2C 1141174aadaSSimon Glass help 1151174aadaSSimon Glass Enable I2C support for sandbox. This is an emulation of a real I2C 1161174aadaSSimon Glass bus. Devices can be attached to the bus using the device tree 1171174aadaSSimon Glass which specifies the driver to use. As an example, see this device 1181174aadaSSimon Glass tree fragment from sandbox.dts. It shows that the I2C bus has a 1191174aadaSSimon Glass single EEPROM at address 0x2c (7-bit address) which is emulated by 1201174aadaSSimon Glass the driver for "sandbox,i2c-eeprom", which is in 1211174aadaSSimon Glass drivers/misc/i2c_eeprom_emul.c. 1221174aadaSSimon Glass 1231174aadaSSimon Glass i2c@0 { 1241174aadaSSimon Glass #address-cells = <1>; 1251174aadaSSimon Glass #size-cells = <0>; 1261174aadaSSimon Glass reg = <0>; 1271174aadaSSimon Glass compatible = "sandbox,i2c"; 1281174aadaSSimon Glass clock-frequency = <400000>; 1291174aadaSSimon Glass eeprom@2c { 1301174aadaSSimon Glass reg = <0x2c>; 1311174aadaSSimon Glass compatible = "i2c-eeprom"; 1321174aadaSSimon Glass emul { 1331174aadaSSimon Glass compatible = "sandbox,i2c-eeprom"; 1341174aadaSSimon Glass sandbox,filename = "i2c.bin"; 1351174aadaSSimon Glass sandbox,size = <128>; 1361174aadaSSimon Glass }; 1371174aadaSSimon Glass }; 1381174aadaSSimon Glass }; 1391174aadaSSimon Glass 1401174aadaSSimon Glass 14126f820f3SMasahiro Yamadaconfig SYS_I2C_UNIPHIER 14226f820f3SMasahiro Yamada bool "UniPhier I2C driver" 14326f820f3SMasahiro Yamada depends on ARCH_UNIPHIER && DM_I2C 14426f820f3SMasahiro Yamada default y 14526f820f3SMasahiro Yamada help 146b6ef3a3fSMasahiro Yamada Support for UniPhier I2C controller driver. This I2C controller 147b6ef3a3fSMasahiro Yamada is used on PH1-LD4, PH1-sLD8 or older UniPhier SoCs. 148238bd0b8SMasahiro Yamada 149238bd0b8SMasahiro Yamadaconfig SYS_I2C_UNIPHIER_F 150238bd0b8SMasahiro Yamada bool "UniPhier FIFO-builtin I2C driver" 151238bd0b8SMasahiro Yamada depends on ARCH_UNIPHIER && DM_I2C 152238bd0b8SMasahiro Yamada default y 153238bd0b8SMasahiro Yamada help 154b6ef3a3fSMasahiro Yamada Support for UniPhier FIFO-builtin I2C controller driver. 155238bd0b8SMasahiro Yamada This I2C controller is used on PH1-Pro4 or newer UniPhier SoCs. 1563d1957f0SSimon Glass 157*14a6ff2cSmario.six@gdsys.ccconfig SYS_I2C_MVTWSI 158*14a6ff2cSmario.six@gdsys.cc bool "Marvell I2C driver" 159*14a6ff2cSmario.six@gdsys.cc depends on DM_I2C 160*14a6ff2cSmario.six@gdsys.cc help 161*14a6ff2cSmario.six@gdsys.cc Support for Marvell I2C controllers as used on the orion5x and 162*14a6ff2cSmario.six@gdsys.cc kirkwood SoC families. 163*14a6ff2cSmario.six@gdsys.cc 1643d1957f0SSimon Glasssource "drivers/i2c/muxes/Kconfig" 1650b11dbf7SMasahiro Yamada 1660b11dbf7SMasahiro Yamadaendmenu 167