diff options
author | Simon Glass <sjg@chromium.org> | 2015-08-30 16:55:39 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-09-02 21:28:24 -0600 |
commit | 3437469985df7c5403fa6e29b224e84c63bdbd52 (patch) | |
tree | 11d10a216df78becb0f01ed08e5caa20800cb03c /drivers/i2c/Kconfig | |
parent | 2444dae587815e5ba14cb27c32f57bc3b3bbed1d (diff) | |
download | u-boot-imx-3437469985df7c5403fa6e29b224e84c63bdbd52.zip u-boot-imx-3437469985df7c5403fa6e29b224e84c63bdbd52.tar.gz u-boot-imx-3437469985df7c5403fa6e29b224e84c63bdbd52.tar.bz2 |
rockchip: Add I2C driver
Add an I2C driver for the Rockchip RK3288, using driver model. It should work
for other Rockchip SoCs also.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/i2c/Kconfig')
-rw-r--r-- | drivers/i2c/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index c40bd5c..14adda2 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig @@ -58,6 +58,15 @@ config DM_I2C_GPIO bindings are supported. Binding info: doc/device-tree-bindings/i2c/i2c-gpio.txt +config SYS_I2C_ROCKCHIP + bool "Rockchip I2C driver" + depends on DM_I2C + help + Add support for the Rockchip I2C driver. This is used with various + Rockchip parts such as RK3126, RK3128, RK3036 and RK3288. All chips + have several I2C ports and all are provided, controled by the + device tree. + config SYS_I2C_SANDBOX bool "Sandbox I2C driver" depends on SANDBOX && DM_I2C |