linux-stable/drivers/iio/humidity
John Brooks 5c113b5e00 iio: dht11: Use usleep_range instead of msleep for start signal
The DHT22 (AM2302) datasheet specifies that the LOW start pulse should not
exceed 20ms. However, observations with an oscilloscope of an RPi Model 2B
(rev 1.1) communicating with a DHT22 sensor showed that the driver was
consistently sending start pulses longer than 20ms:

Kernel 4.7.10-v7+ (n=132):
    Minimum pulse length: 20.20ms
    Maximum:              29.84ms
    Mean:                 24.96ms
    StDev:                2.82ms
    Sensor response rate: 100%
    Read success rate:    76%

On kernel 4.8, the start pulse was so long that the sensor would not even
respond 97% of the time:

Kernel 4.8.16-v7+ (n=100):
    Minimum pulse length: 30.4ms
    Maximum:              74.4ms
    Mean:                 39.3ms
    StDev:                10.2ms
    Sensor response rate: 3%
    Read success rate:    3%

The driver would return ETIMEDOUT and write log messages like this:

[   51.430987] dht11 dht11@0: Only 1 signal edges detected
[   66.311019] dht11 dht11@0: Only 0 signal edges detected

Replacing msleep(18) with usleep_range(18000, 20000) made the pulse length
sane again and restored responsiveness:

Kernel 4.8.16-v7+ with usleep_range (n=123):
    Minimum pulse length: 18.16ms
    Maximum:              20.20ms
    Mean:                 19.85ms
    StDev:                0.51ms
    Sensor response rate: 100%
    Read success rate:    84%

Cc: stable@vger.kernel.org
Signed-off-by: John Brooks <john@fastquake.com>
Reviewed-by: Harald Geyer <harald@ccbib.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
2017-01-22 13:35:40 +00:00
..
am2315.c iio: humidity: am2315: set up buffer timestamps for non-zero values 2016-08-15 15:39:23 +01:00
dht11.c iio: dht11: Use usleep_range instead of msleep for start signal 2017-01-22 13:35:40 +00:00
hdc100x.c iio: humidity: hdc100x: add triggered buffer support for HDC100X 2016-10-23 19:34:25 +01:00
hts221.h iio: humidity: add support to hts221 rh/temp combo device 2016-10-23 19:34:09 +01:00
hts221_buffer.c iio: humidity: remove duplicated include from hts221_buffer.c 2016-11-01 18:43:46 +00:00
hts221_core.c iio: humidity: add support to hts221 rh/temp combo device 2016-10-23 19:34:09 +01:00
hts221_i2c.c iio: humidity: add support to hts221 rh/temp combo device 2016-10-23 19:34:09 +01:00
hts221_spi.c iio: humidity: add support to hts221 rh/temp combo device 2016-10-23 19:34:09 +01:00
htu21.c iio: Export I2C module alias information 2016-05-21 20:08:14 +01:00
Kconfig iio: humidity: hdc100x: add triggered buffer support for HDC100X 2016-10-23 19:34:25 +01:00
Makefile iio: humidity: add support to hts221 rh/temp combo device 2016-10-23 19:34:09 +01:00
si7005.c iio: convert to common i2c_check_functionality() return value 2016-02-27 17:17:43 +00:00
si7020.c iio: si7020: Add devicetree support and trivial bindings 2016-11-01 18:49:53 +00:00