|
@@ -27,6 +27,7 @@
|
|
|
#include <plat/mcspi.h>
|
|
|
#include <plat/mcbsp.h>
|
|
|
#include <plat/mmc.h>
|
|
|
+#include <plat/i2c.h>
|
|
|
|
|
|
#include "omap_hwmod_common_data.h"
|
|
|
|
|
@@ -2163,6 +2164,10 @@ static struct omap_hwmod_class omap44xx_i2c_hwmod_class = {
|
|
|
.rev = OMAP_I2C_IP_VERSION_2,
|
|
|
};
|
|
|
|
|
|
+static struct omap_i2c_dev_attr i2c_dev_attr = {
|
|
|
+ .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE,
|
|
|
+};
|
|
|
+
|
|
|
/* i2c1 */
|
|
|
static struct omap_hwmod omap44xx_i2c1_hwmod;
|
|
|
static struct omap_hwmod_irq_info omap44xx_i2c1_irqs[] = {
|
|
@@ -2213,6 +2218,7 @@ static struct omap_hwmod omap44xx_i2c1_hwmod = {
|
|
|
},
|
|
|
.slaves = omap44xx_i2c1_slaves,
|
|
|
.slaves_cnt = ARRAY_SIZE(omap44xx_i2c1_slaves),
|
|
|
+ .dev_attr = &i2c_dev_attr,
|
|
|
.omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
|
|
|
};
|
|
|
|
|
@@ -2266,6 +2272,7 @@ static struct omap_hwmod omap44xx_i2c2_hwmod = {
|
|
|
},
|
|
|
.slaves = omap44xx_i2c2_slaves,
|
|
|
.slaves_cnt = ARRAY_SIZE(omap44xx_i2c2_slaves),
|
|
|
+ .dev_attr = &i2c_dev_attr,
|
|
|
.omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
|
|
|
};
|
|
|
|
|
@@ -2319,6 +2326,7 @@ static struct omap_hwmod omap44xx_i2c3_hwmod = {
|
|
|
},
|
|
|
.slaves = omap44xx_i2c3_slaves,
|
|
|
.slaves_cnt = ARRAY_SIZE(omap44xx_i2c3_slaves),
|
|
|
+ .dev_attr = &i2c_dev_attr,
|
|
|
.omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
|
|
|
};
|
|
|
|
|
@@ -2372,6 +2380,7 @@ static struct omap_hwmod omap44xx_i2c4_hwmod = {
|
|
|
},
|
|
|
.slaves = omap44xx_i2c4_slaves,
|
|
|
.slaves_cnt = ARRAY_SIZE(omap44xx_i2c4_slaves),
|
|
|
+ .dev_attr = &i2c_dev_attr,
|
|
|
.omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
|
|
|
};
|
|
|
|