Hi Priyasamy
Take a look at the file include/configs/mx6sabresd.h
which is for sabresd board. These are the I2C and PMIC
related lines :
/* I2C Configs */
#define CONFIG_CMD_I2C
#define CONFIG_SYS_I2C
#define CONFIG_SYS_I2C_MXC
#define CONFIG_SYS_I2C_SPEED 100000
/* PMIC */
#define CONFIG_POWER
#define CONFIG_POWER_I2C
#define CONFIG_POWER_PFUZE100
#define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
If it applies to your board (imx solo lite) you should
include similar defines in mx6slevk.h and compile for
your board again. You might have to change the I2C
address for your board. I don't have the solo lite
board schematics handy now to verify this but make
sure all that is supported in your board.
Hope this helps
Sinan Akman