i have checked already i2c wave its proper generate signal ....can you tell me how to change the iomux confugration in ltib kernel varsion 2.6.35
this time i am using scl (1 ,23),sda(1,24) ....and i am currently working on imx233
like this
| #define PINID_I2C_SCL | MXS_PIN_ENCODE(1, 23) |
| #define PINID_I2C_SDA | MXS_PIN_ENCODE(1, 24) |
#if defined(CONFIG_I2C_MXS) || \
defined(CONFIG_I2C_MXS_MODULE)
{
.name = "I2C_SCL",
.id = PINID_I2C_SCL,
.fun = PIN_FUN2,
.strength = PAD_4MA,
.voltage = PAD_3_3V,
.drive = 1,
},
{
.name = "I2C_SDA",
.id = PINID_I2C_SDA,
.fun = PIN_FUN2,
.strength = PAD_4MA,
.voltage = PAD_3_3V,
.drive = 1,
},