Hi,
I'm trying to read/write to an I2C device from DM814x. I've already made the changes suggested by http://processors.wiki.ti.com/index.php/TI81xx_PSP_Porting_Guide#I2C_Driver
I have a driver that can read/write to this device from another CPU. So I port it over. So far I can probe my device during initialization. However I can't read/write to it yet.
In my driver I use
i2c_smbus_read_byte_data(client, reg_address);
i2c_smbus_write_byte_data(client, reg_address,temp_val);
I'm wondering in DM814x, we have to use different functions for I2C read/write to an external I2C device?
Regards