Hi Ben, hi Jeff, My attention was brought to the drivers/net/sfc/i2c-direct.c file which appeared recently in the Linux kernel. Apparently this is a custom implementation of I2C support, including software bit-banging. All this is already available in the Linux kernel in: drivers/i2c/i2c-core.c drivers/i2c/algos/i2c-algo-bit.c So it really doesn't make sense to duplicate the code in the sfc network driver.
Can you please get rid of this custom I2C implementation and use the standard one? It should be really easy, all you have to do is include <linux/i2c.h> and <linux/i2c-algo-bit.h>, pack your SDA and SCL get/set functions in a struct i2c_algo_bit_data, and call i2c_bit_add_bus() on it. See drivers/video/intelfb/intelfb_i2c.c (or any framebuffer driver with I2C/DDC support) for an example. Using the standard I2C implementation will give you access to all the i2c debugging tools, user-space access to the I2C bus if needed, and compatibility with all the Linux i2c device drivers, including hardware monitoring and GPIO drivers which apparently the SFC hardware uses. Thanks, -- Jean Delvare _______________________________________________ i2c mailing list [email protected] http://lists.lm-sensors.org/mailman/listinfo/i2c
