Hi Wolfram, This patchset adds i2c bus recovery infrastructure to i2c adapters as specified in the i2c protocol Rev. 03 section 3.16 titled "Bus clear". http://www.nxp.com/documents/user_manual/UM10204.pdf This patch was earlier part of a separate thread: http://www.spinics.net/lists/linux-i2c/msg07267.html V3->V4: - created single i2c_recover_bus() routine instead of two. - do bus recovery from i2c core files, instead of individual controller drivers. - created separate struct for gpio configurations - Documentation updated for bus recovery - Renamed few variables to give clear names to them - few prints changed to dev_dbg V2->V3: - gpio flags are now passed from controller drivers - added support for sda line polling - Aligned i2c-designware driver with generic recovery support Viresh Kumar (2): i2c/adapter: Add bus recovery infrastructure i2c/designware: Provide i2c bus recovery support Documentation/i2c/bus-recovery | 87 +++++++++++++++ drivers/i2c/busses/i2c-designware-core.c | 1 - drivers/i2c/busses/i2c-designware-platdrv.c | 31 +++++ drivers/i2c/i2c-core.c | 160 +++++++++++++++++++++++++++ drivers/i2c/i2c-mux.c | 9 ++- include/linux/i2c.h | 58 ++++++++++ include/linux/i2c/i2c-designware.h | 49 ++++++++ 7 files changed, 393 insertions(+), 2 deletions(-) create mode 100644 Documentation/i2c/bus-recovery create mode 100644 include/linux/i2c/i2c-designware.h -- 1.7.9 -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html