Hello, While working with system designs making use of TI's UCD90320 Power Sequencer we've found that communication with the device isn't terribly reliable. It appears that back-to-back transfers where commands addressed to the device are put onto the bus with intervals between STOP and START in the neighbourhood of 250us or less can cause bad behaviour. This primarily happens during driver probe while scanning the device to determine its capabilities. We have observed the device causing excessive clock stretches and bus lockups, and also corruption of the device's volatile state (requiring it to be reset). The latter is particularly disruptive in that the controlled rails are brought down either by: 1. The corruption causing a fault condition, or 2. Asserting the device's reset line to recover A further observation is that pacing transfers to the device appears to mitigate the bad behaviour. We're in discussion with TI to better understand the limitations and at least get the behaviour documented. This short series implements the mitigation in terms of a throttle in the i2c_client associated with the device's driver. Before the first communication with the device in the probe() of ucd9000 we configure the i2c_client to throttle transfers with a minimum of a 1ms delay (with the delay exposed as a module parameter). The series is RFC for several reasons: The first is to sus out feelings on the general direction. The problem is pretty unfortunate - are there better ways to implement the mitigation? If there aren't, then: I'd like thoughts on whether we want to account for i2c-dev clients. Implementing throttling in i2c_client feels like a solution-by-proxy as the throttling is really a property of the targeted device, but we don't have a coherent representation between platform devices and devices associated with i2c-dev clients. At the moment we'd have to resort to address-based lookups for platform data stashed in the transfer functions. Next is that I've only implemented throttling for SMBus devices. I don't yet have a use-case for throttling non-SMBus devices so I'm not sure it's worth poking at it, but would appreciate thoughts there. Further, I've had a bit of a stab at dealing with atomic transfers that's not been tested. Hopefully it makes sense. Finally I'm also interested in feedback on exposing the control in a little more general manner than having to implement a module parameter in all drivers that want to take advantage of throttling. This isn't a big problem at the moment, but if anyone has thoughts there then I'm happy to poke at those too. Please review! Andrew Andrew Jeffery (2): i2c: smbus: Allow throttling of transfers to client devices hwmon: (pmbus/ucd9000) Throttle SMBus transfers to avoid poor behaviour drivers/hwmon/pmbus/ucd9000.c | 6 ++ drivers/i2c/i2c-core-base.c | 8 +- drivers/i2c/i2c-core-smbus.c | 149 +++++++++++++++++++++++++++------- drivers/i2c/i2c-core.h | 22 +++++ include/linux/i2c.h | 3 + 5 files changed, 157 insertions(+), 31 deletions(-) -- 2.25.1