summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPeng Fan <Peng.Fan@freescale.com>2015-05-05 14:34:11 +0800
committerPeng Fan <Peng.Fan@freescale.com>2015-05-05 14:34:11 +0800
commit88ae4c453ba53c5920a381a5d9c23d3815413271 (patch)
treed9e00f1c17a1bd48a0b0da435199fb035a824652 /drivers
parent265511519bb875b99b3b83c85e96b2ef1a1361c0 (diff)
downloadu-boot-imx-88ae4c453ba53c5920a381a5d9c23d3815413271.zip
u-boot-imx-88ae4c453ba53c5920a381a5d9c23d3815413271.tar.gz
u-boot-imx-88ae4c453ba53c5920a381a5d9c23d3815413271.tar.bz2
MLK-10812-1 imx:mx6 add i2c4 support
I2C4 support for i.MX Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/mxc_i2c.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c
index 2bf4e01..7bc6d07 100644
--- a/drivers/i2c/mxc_i2c.c
+++ b/drivers/i2c/mxc_i2c.c
@@ -435,7 +435,10 @@ static void * const i2c_bases[] = {
defined(CONFIG_MX6) || defined(CONFIG_LS102XA)
(void *)I2C1_BASE_ADDR,
(void *)I2C2_BASE_ADDR,
- (void *)I2C3_BASE_ADDR
+ (void *)I2C3_BASE_ADDR,
+#if defined(CONFIG_MX6SX) || defined(CONFIG_MX6UL)
+ (void *)I2C4_BASE_ADDR
+#endif
#elif defined(CONFIG_MX7)
(void *)I2C1_BASE_ADDR,
(void *)I2C2_BASE_ADDR,
@@ -579,7 +582,7 @@ U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe,
CONFIG_SYS_MXC_I2C3_SLAVE, 2)
#endif
-#if defined(CONFIG_MX7)
+#if defined(CONFIG_MX7) || defined(CONFIG_MX6SX) || defined(CONFIG_MX6UL)
U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe,
mxc_i2c_read, mxc_i2c_write,
mxc_i2c_set_bus_speed,